public enum FeatureStatus extends java.lang.Enum<FeatureStatus>
| Enum Constant and Description |
|---|
MISSING_DATA
Either the join keys requested are missing in the online store or the feature value is outside
ttl.
|
PRESENT
Feature value is present and returned with no errors.
|
UNKNOWN
Unable to infer feature status.
|
| Modifier and Type | Method and Description |
|---|---|
static java.util.Optional<FeatureStatus> |
fromString(java.lang.String name)
Returns the Status that matches the String representation passed as a parameter
|
static FeatureStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FeatureStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeatureStatus PRESENT
public static final FeatureStatus MISSING_DATA
public static final FeatureStatus UNKNOWN
public static FeatureStatus[] values()
for (FeatureStatus c : FeatureStatus.values()) System.out.println(c);
public static FeatureStatus 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 nullpublic static java.util.Optional<FeatureStatus> fromString(java.lang.String name)
name - The String representation of the StatusValueType> if a match is found, Optional.empty() otherwise