Interface AdvancementProgress
public interface AdvancementProgress
The individual status of an advancement for a player. This class is not
reference safe as the underlying advancement may be reloaded.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanawardCriteria(@NotNull String criteria) Mark the specified criteria as awarded at the current time.The advancement this progress is concerning.Gets the criteria which have been awarded.getDateAwarded(@NotNull String criteria) Get the date the specified criteria was awarded.Get the criteria which have not been awarded.booleanisDone()Check if all criteria for this advancement have been met.booleanrevokeCriteria(@NotNull String criteria) Mark the specified criteria as uncompleted.
-
Method Details
-
getAdvancement
The advancement this progress is concerning.- Returns:
- the relevant advancement
-
isDone
boolean isDone()Check if all criteria for this advancement have been met.- Returns:
- true if this advancement is done
-
awardCriteria
-
revokeCriteria
-
getDateAwarded
-
getRemainingCriteria
Get the criteria which have not been awarded.- Returns:
- unmodifiable copy of criteria remaining
-
getAwardedCriteria
Gets the criteria which have been awarded.- Returns:
- unmodifiable copy of criteria awarded
-