Package com.launchdarkly.sdk
Enum Class EvaluationReason.Kind
- All Implemented Interfaces:
Serializable
,Comparable<EvaluationReason.Kind>
,Constable
- Enclosing class:
- EvaluationReason
Enumerated type defining the possible values of
EvaluationReason.getKind()
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicates that the flag could not be evaluated, e.g.Indicates that the flag was on but the user did not match any targets or rules.Indicates that the flag was off and therefore returned its configured off value.Indicates that the flag was considered off because it had at least one prerequisite flag that either was off or did not return the desired variation.Indicates that the context matched one of the flag's rules.Indicates that the context key was specifically targeted for this flag. -
Method Summary
Modifier and TypeMethodDescriptionstatic EvaluationReason.Kind
Returns the enum constant of this class with the specified name.static EvaluationReason.Kind[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OFF
Indicates that the flag was off and therefore returned its configured off value. -
FALLTHROUGH
Indicates that the flag was on but the user did not match any targets or rules. -
TARGET_MATCH
Indicates that the context key was specifically targeted for this flag. -
RULE_MATCH
Indicates that the context matched one of the flag's rules. -
PREREQUISITE_FAILED
Indicates that the flag was considered off because it had at least one prerequisite flag that either was off or did not return the desired variation. -
ERROR
Indicates that the flag could not be evaluated, e.g. because it does not exist or due to an unexpected error. In this case the result value will be the default value that the caller passed to the client. Check the errorKind property for more details on the problem.
-
-
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
-