Enum DiagnosticConfigProperty
- java.lang.Object
-
- java.lang.Enum<DiagnosticConfigProperty>
-
- com.launchdarkly.sdk.internal.events.DiagnosticConfigProperty
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DiagnosticConfigProperty>
public enum DiagnosticConfigProperty extends java.lang.Enum<DiagnosticConfigProperty>
Defines the standard properties that are allowed in the configuration section of a diagnostic initialization event.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DiagnosticConfigProperty
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DiagnosticConfigProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_ATTRIBUTES_PRIVATE
public static final DiagnosticConfigProperty ALL_ATTRIBUTES_PRIVATE
-
CONNECT_TIMEOUT_MILLIS
public static final DiagnosticConfigProperty CONNECT_TIMEOUT_MILLIS
-
CUSTOM_BASE_URI
public static final DiagnosticConfigProperty CUSTOM_BASE_URI
-
CUSTOM_EVENTS_URI
public static final DiagnosticConfigProperty CUSTOM_EVENTS_URI
-
CUSTOM_STREAM_URI
public static final DiagnosticConfigProperty CUSTOM_STREAM_URI
-
DATA_STORE_TYPE
public static final DiagnosticConfigProperty DATA_STORE_TYPE
-
DIAGNOSTIC_RECORDING_INTERVAL_MILLIS
public static final DiagnosticConfigProperty DIAGNOSTIC_RECORDING_INTERVAL_MILLIS
-
EVENTS_CAPACITY
public static final DiagnosticConfigProperty EVENTS_CAPACITY
-
EVENTS_FLUSH_INTERVAL_MILLIS
public static final DiagnosticConfigProperty EVENTS_FLUSH_INTERVAL_MILLIS
-
POLLING_INTERVAL_MILLIS
public static final DiagnosticConfigProperty POLLING_INTERVAL_MILLIS
-
RECONNECT_TIME_MILLIS
public static final DiagnosticConfigProperty RECONNECT_TIME_MILLIS
-
SAMPLING_INTERVAL
public static final DiagnosticConfigProperty SAMPLING_INTERVAL
-
SOCKET_TIMEOUT_MILLIS
public static final DiagnosticConfigProperty SOCKET_TIMEOUT_MILLIS
-
START_WAIT_MILLIS
public static final DiagnosticConfigProperty START_WAIT_MILLIS
-
STREAMING_DISABLED
public static final DiagnosticConfigProperty STREAMING_DISABLED
-
USER_KEYS_CAPACITY
public static final DiagnosticConfigProperty USER_KEYS_CAPACITY
-
USER_KEYS_FLUSH_INTERVAL_MILLIS
public static final DiagnosticConfigProperty USER_KEYS_FLUSH_INTERVAL_MILLIS
-
USING_PROXY
public static final DiagnosticConfigProperty USING_PROXY
-
USING_PROXY_AUTHENTICATOR
public static final DiagnosticConfigProperty USING_PROXY_AUTHENTICATOR
-
USING_RELAY_DAEMON
public static final DiagnosticConfigProperty USING_RELAY_DAEMON
-
BACKGROUND_POLLING_INTERVAL_MILLIS
public static final DiagnosticConfigProperty BACKGROUND_POLLING_INTERVAL_MILLIS
-
BACKGROUND_POLLING_DISABLED
public static final DiagnosticConfigProperty BACKGROUND_POLLING_DISABLED
-
EVALUATION_REASONS_REQUESTED
public static final DiagnosticConfigProperty EVALUATION_REASONS_REQUESTED
-
MAX_CACHED_USERS
public static final DiagnosticConfigProperty MAX_CACHED_USERS
-
MOBILE_KEY_COUNT
public static final DiagnosticConfigProperty MOBILE_KEY_COUNT
-
USE_REPORT
public static final DiagnosticConfigProperty USE_REPORT
-
-
Method Detail
-
values
public static DiagnosticConfigProperty[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DiagnosticConfigProperty c : DiagnosticConfigProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DiagnosticConfigProperty valueOf(java.lang.String name)
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
-
-