Enum Class GrantCriteriaResult

java.lang.Object
java.lang.Enum<GrantCriteriaResult>
eu.endercentral.crazy_advancements.advancement.progress.GrantCriteriaResult
All Implemented Interfaces:
Serializable, Comparable<GrantCriteriaResult>, Constable

public enum GrantCriteriaResult extends Enum<GrantCriteriaResult>
Represents the Result to an Operation where Criteria is granted
Author:
Axel
  • Enum Constant Details

    • UNCHANGED

      public static final GrantCriteriaResult UNCHANGED
      Operations with this Result did not lead to any changes
    • CHANGED

      public static final GrantCriteriaResult CHANGED
      Operations with this Result did lead to changes, but did not lead to the Advancement being completed
    • COMPLETED

      public static final GrantCriteriaResult COMPLETED
      Operations with this Result did lead to the Advancement being completed
  • Method Details

    • values

      public static GrantCriteriaResult[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static GrantCriteriaResult valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null