Enum Class DiagnosticsIssueCode
java.lang.Object
java.lang.Enum<DiagnosticsIssueCode>
growthbook.sdk.java.diagnostics.model.enums.DiagnosticsIssueCode
- All Implemented Interfaces:
Serializable,Comparable<DiagnosticsIssueCode>,Constable
Stable machine-readable diagnostics issue codes.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCache persistence is enabled but cache state cannot be inspected.The client has not completed initialization.The client has been shut down.Feature data is loaded but contains no feature definitions.Local feature data is required but not currently loaded.Feature data is loaded but past its cache expiry.QA mode is enabled by configuration.The most recent feature refresh or initialization attempt failed.Remote evaluation is configured but not ready.SDK evaluations are globally disabled by configuration.Streaming refresh is configured and supported, but is currently reconnecting.Streaming refresh is configured but not supported by the server response. -
Method Summary
Modifier and TypeMethodDescriptionstatic DiagnosticsIssueCodeReturns the enum constant of this class with the specified name.static DiagnosticsIssueCode[]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
-
CLIENT_NOT_INITIALIZED
The client has not completed initialization. -
CLIENT_SHUTDOWN
The client has been shut down. -
FEATURES_NOT_LOADED
Local feature data is required but not currently loaded. -
FEATURES_EMPTY
Feature data is loaded but contains no feature definitions. -
REFRESH_FAILED
The most recent feature refresh or initialization attempt failed. -
CACHE_STATE_UNKNOWN
Cache persistence is enabled but cache state cannot be inspected. -
STREAMING_UNSUPPORTED
Streaming refresh is configured but not supported by the server response. -
STREAMING_INTERRUPTED
Streaming refresh is configured and supported, but is currently reconnecting. -
REMOTE_EVAL_NOT_READY
Remote evaluation is configured but not ready. -
FEATURES_STALE
Feature data is loaded but past its cache expiry. -
SDK_DISABLED
SDK evaluations are globally disabled by configuration. -
QA_MODE_ENABLED
QA mode is enabled by configuration.
-
-
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
-