Package io.quarkiverse.logging.splunk
Enum SplunkHandlerConfig.SerializationFormat
- java.lang.Object
-
- java.lang.Enum<SplunkHandlerConfig.SerializationFormat>
-
- io.quarkiverse.logging.splunk.SplunkHandlerConfig.SerializationFormat
-
- All Implemented Interfaces:
Serializable
,Comparable<SplunkHandlerConfig.SerializationFormat>
- Enclosing class:
- SplunkHandlerConfig
public static enum SplunkHandlerConfig.SerializationFormat extends Enum<SplunkHandlerConfig.SerializationFormat>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SplunkHandlerConfig.SerializationFormat
valueOf(String name)
Returns the enum constant of this type with the specified name.static SplunkHandlerConfig.SerializationFormat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RAW
public static final SplunkHandlerConfig.SerializationFormat RAW
-
NESTED
public static final SplunkHandlerConfig.SerializationFormat NESTED
-
FLAT
public static final SplunkHandlerConfig.SerializationFormat FLAT
-
-
Method Detail
-
values
public static SplunkHandlerConfig.SerializationFormat[] 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 (SplunkHandlerConfig.SerializationFormat c : SplunkHandlerConfig.SerializationFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SplunkHandlerConfig.SerializationFormat 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
-
-