AchievementBuffer
Stay organized with collections
Save and categorize content based on your preferences.
Page Summary
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().
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[],["The `AchievementBuffer` class provides a data structure for accessing a list of `Achievement` objects. Key actions include: `get(int position)`, which retrieves an `Achievement` at a specific index; `getCount()`, returning the total number of achievements; `iterator()` and `singleRefIterator()`, for iterating through achievements. It allows to close the buffer, check if it is `isClosed()` or release `release()` it. There are also standard inherited methods, including those from `Object` and `Iterable` classes.\n"]]