Enum Class SetCriteriaResult

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

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

    • UNCHANGED

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

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

      public static final SetCriteriaResult COMPLETED
      Operations with this Result did lead to the Advancement being completed
    • INVALID

      public static final SetCriteriaResult INVALID
      Operations with this Result could not be processed because the CriteriaType did not match
  • Method Details

    • values

      public static SetCriteriaResult[] 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 SetCriteriaResult 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