Package com.launchdarkly.sdk
Enum EvaluationReason.Kind
java.lang.Object
java.lang.Enum<EvaluationReason.Kind>
com.launchdarkly.sdk.EvaluationReason.Kind
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EvaluationReason.Kind>
,java.lang.constant.Constable
- Enclosing class:
- EvaluationReason
public static enum EvaluationReason.Kind extends java.lang.Enum<EvaluationReason.Kind>
Enumerated type defining the possible values of
EvaluationReason.getKind()
.-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description ERROR
Indicates that the flag could not be evaluated, e.g.FALLTHROUGH
Indicates that the flag was on but the user did not match any targets or rules.OFF
Indicates that the flag was off and therefore returned its configured off value.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.RULE_MATCH
Indicates that the user matched one of the flag's rules.TARGET_MATCH
Indicates that the user key was specifically targeted for this flag. -
Method Summary
Modifier and Type Method Description static EvaluationReason.Kind
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EvaluationReason.Kind[]
values()
Returns an array containing the constants of this enum type, 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 user key was specifically targeted for this flag. -
RULE_MATCH
Indicates that the user 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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-