Enum Class SetCriteriaResult
java.lang.Object
java.lang.Enum<SetCriteriaResult>
eu.endercentral.crazy_advancements.advancement.progress.SetCriteriaResult
- All Implemented Interfaces:
Serializable
,Comparable<SetCriteriaResult>
,Constable
Represents the Result to an Operation where Criteria is set
- Author:
- Axel
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionOperations with this Result did lead to changes, but did not lead to the Advancement being completedOperations with this Result did lead to the Advancement being completedOperations with this Result could not be processed because theCriteriaType
did not matchOperations with this Result did not lead to any changes -
Method Summary
Modifier and TypeMethodDescriptionstatic SetCriteriaResult
Returns the enum constant of this class with the specified name.static SetCriteriaResult[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
UNCHANGED
Operations with this Result did not lead to any changes -
CHANGED
Operations with this Result did lead to changes, but did not lead to the Advancement being completed -
COMPLETED
Operations with this Result did lead to the Advancement being completed -
INVALID
Operations with this Result could not be processed because theCriteriaType
did not match
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-