AchievementBuffer

  • AchievementBuffer is a data structure that provides access to a list of achievements.

  • The class AchievementBuffer extends AbstractDataBuffer.

  • It includes methods for accessing individual achievements by position, getting the count of achievements, checking if the buffer is closed, and iterating through the achievements.

  • Key methods include get(int position), getCount(), isClosed(), iterator(), and release().

public class AchievementBuffer extends AbstractDataBuffer<Achievement>

Data structure providing access to a list of achievements.

Public Method Summary

Achievement
get(int position)

Inherited Method Summary

Public Methods

public Achievement get (int position)