Enum Class KibanaLogTypeNames
- All Implemented Interfaces:
Serializable,Comparable<KibanaLogTypeNames>,Constable
Enumeration for values of the Kibana Log Field LOG_TYPE.
- Since:
- 2.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe end of a call to another system.The call requests body.The call response body.The start of a call to another system.The end of a transaction.The request body.The response body.The start of a transaction. -
Method Summary
Modifier and TypeMethodDescriptionstatic KibanaLogTypeNamesReturns the enum constant of this class with the specified name.static KibanaLogTypeNames[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
START
The start of a transaction. -
END
The end of a transaction. -
REQUEST_BODY
The request body. (incoming) -
RESPONSE_BODY
The response body. (returning) -
CALL_START
The start of a call to another system. -
CALL_REQUEST_BODY
The call requests body. -
CALL_RESPONSE_BODY
The call response body. -
CALL_END
The end of a call to another system.
-
-
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
-