Package de.codecentric.cxf.logging
Enum ElasticsearchField
- java.lang.Object
-
- java.lang.Enum<ElasticsearchField>
-
- de.codecentric.cxf.logging.ElasticsearchField
-
- All Implemented Interfaces:
Serializable,Comparable<ElasticsearchField>
public enum ElasticsearchField extends Enum<ElasticsearchField>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HTTP_HEADER_INBOUNDSLEUTH_TRACE_IDSOAP_MESSAGE_INBOUNDSOAP_MESSAGE_OUTBOUNDSOAP_METHOD_LOG_NAME
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()static ElasticsearchFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static ElasticsearchField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SOAP_METHOD_LOG_NAME
public static final ElasticsearchField SOAP_METHOD_LOG_NAME
-
HTTP_HEADER_INBOUND
public static final ElasticsearchField HTTP_HEADER_INBOUND
-
SOAP_MESSAGE_INBOUND
public static final ElasticsearchField SOAP_MESSAGE_INBOUND
-
SOAP_MESSAGE_OUTBOUND
public static final ElasticsearchField SOAP_MESSAGE_OUTBOUND
-
SLEUTH_TRACE_ID
public static final ElasticsearchField SLEUTH_TRACE_ID
-
-
Method Detail
-
values
public static ElasticsearchField[] 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 (ElasticsearchField c : ElasticsearchField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ElasticsearchField 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
-
getName
public String getName()
-
-