Package io.split.telemetry.domain.enums
Enum HttpParamsWrapper
- java.lang.Object
-
- java.lang.Enum<HttpParamsWrapper>
-
- io.split.telemetry.domain.enums.HttpParamsWrapper
-
- All Implemented Interfaces:
Serializable,Comparable<HttpParamsWrapper>
public enum HttpParamsWrapper extends Enum<HttpParamsWrapper>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EVENTSIMPRESSIONSIMPRESSIONS_COUNTSEGMENTSSPLITSTELEMETRYTOKEN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description HTTPLatenciesEnumgetHttpLatenciesEnum()LastSynchronizationRecordsEnumgetLastSynchronizationRecordsEnum()ResourceEnumgetResourceEnum()static HttpParamsWrappervalueOf(String name)Returns the enum constant of this type with the specified name.static HttpParamsWrapper[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EVENTS
public static final HttpParamsWrapper EVENTS
-
TELEMETRY
public static final HttpParamsWrapper TELEMETRY
-
IMPRESSIONS
public static final HttpParamsWrapper IMPRESSIONS
-
IMPRESSIONS_COUNT
public static final HttpParamsWrapper IMPRESSIONS_COUNT
-
SEGMENTS
public static final HttpParamsWrapper SEGMENTS
-
SPLITS
public static final HttpParamsWrapper SPLITS
-
TOKEN
public static final HttpParamsWrapper TOKEN
-
-
Method Detail
-
values
public static HttpParamsWrapper[] 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 (HttpParamsWrapper c : HttpParamsWrapper.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HttpParamsWrapper valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getHttpLatenciesEnum
public HTTPLatenciesEnum getHttpLatenciesEnum()
-
getLastSynchronizationRecordsEnum
public LastSynchronizationRecordsEnum getLastSynchronizationRecordsEnum()
-
getResourceEnum
public ResourceEnum getResourceEnum()
-
-