public static enum EvaluationReason.BigSegmentsStatus extends java.lang.Enum<EvaluationReason.BigSegmentsStatus>
EvaluationReason.getBigSegmentsStatus()
.Enum Constant and Description |
---|
HEALTHY
Indicates that the Big Segment query involved in the flag evaluation was successful, and that
the segment state is considered up to date.
|
NOT_CONFIGURED
Indicates that Big Segments could not be queried for the flag evaluation because the SDK
configuration did not include a Big Segment store.
|
STALE
Indicates that the Big Segment query involved in the flag evaluation was successful, but that
the segment state may not be up to date.
|
STORE_ERROR
Indicates that the Big Segment query involved in the flag evaluation failed, for instance due
to a database error.
|
Modifier and Type | Method and Description |
---|---|
static EvaluationReason.BigSegmentsStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EvaluationReason.BigSegmentsStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvaluationReason.BigSegmentsStatus HEALTHY
public static final EvaluationReason.BigSegmentsStatus STALE
public static final EvaluationReason.BigSegmentsStatus NOT_CONFIGURED
public static final EvaluationReason.BigSegmentsStatus STORE_ERROR
public static EvaluationReason.BigSegmentsStatus[] values()
for (EvaluationReason.BigSegmentsStatus c : EvaluationReason.BigSegmentsStatus.values()) System.out.println(c);
public static EvaluationReason.BigSegmentsStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null