public enum ConverterType extends java.lang.Enum<ConverterType>
Converter
and HeaderConverter
.Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
getName() |
|
static ConverterType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ConverterType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static ConverterType |
withName(java.lang.String name) |
Find the ConverterType with the given name, using a case-insensitive match.
|
public static final ConverterType KEY
public static final ConverterType VALUE
public static final ConverterType HEADER
public static ConverterType[] values()
for (ConverterType c : ConverterType.values()) System.out.println(c);
public static ConverterType 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 nullpublic static ConverterType withName(java.lang.String name)
name
- the name of the converter type; may be nullpublic java.lang.String getName()