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