public enum KibanaLogTypeNames extends java.lang.Enum<KibanaLogTypeNames>
Enum Constant and Description |
---|
CALL_END |
CALL_REQUEST_BODY |
CALL_RESPONSE_BODY |
CALL_START |
END |
REQUEST_BODY |
RESPONSE_BODY |
START |
Modifier and Type | Method and Description |
---|---|
static KibanaLogTypeNames |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KibanaLogTypeNames[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KibanaLogTypeNames START
public static final KibanaLogTypeNames END
public static final KibanaLogTypeNames REQUEST_BODY
public static final KibanaLogTypeNames RESPONSE_BODY
public static final KibanaLogTypeNames CALL_START
public static final KibanaLogTypeNames CALL_REQUEST_BODY
public static final KibanaLogTypeNames CALL_RESPONSE_BODY
public static final KibanaLogTypeNames CALL_END
public static KibanaLogTypeNames[] values()
for (KibanaLogTypeNames c : KibanaLogTypeNames.values()) System.out.println(c);
public static KibanaLogTypeNames valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null