Enum ClientMode
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum ClientMode extends Enum<ClientMode>
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<ClientMode>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description PRODUCTIONData will be sent to the production environment. If the build or group version failed validation, events will be skipped. Otherwise, the library will send events replacing incorrect values with errors.
TEST_SKIP_VALIDATIONData will be sent to the test environment, data validation will be skipped.
TEST_VALIDATIONData will be sent to the test environment, data validation will work as in production mode.
-
Method Summary
Modifier and Type Method Description final Array<ClientMode>values()Returns an array containing the constants of this enum type, in the order they're declared. final ClientModevalueOf(String value)Returns the enum constant of this type with the specified name. final EnumEntries<ClientMode>getEntries()-
-
Method Detail
-
values
final Array<ClientMode> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
valueOf
final ClientMode valueOf(String value)
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.)
-
getEntries
final EnumEntries<ClientMode> getEntries()
-
-
-
-