public static enum Converter.Type extends java.lang.Enum<Converter.Type>
| Enum Constant and Description |
|---|
BOOLEAN |
BYTE |
DATETIME |
DOUBLE |
FLOAT |
INT |
LONG |
SHORT |
STRING |
| Modifier and Type | Field and Description |
|---|---|
java.util.List<java.lang.String> |
aliases |
io.krakens.grok.api.Converter.IConverter<? extends java.lang.Object> |
converter |
| Modifier and Type | Method and Description |
|---|---|
static Converter.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Converter.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Converter.Type BYTE
public static final Converter.Type BOOLEAN
public static final Converter.Type SHORT
public static final Converter.Type INT
public static final Converter.Type LONG
public static final Converter.Type FLOAT
public static final Converter.Type DOUBLE
public static final Converter.Type DATETIME
public static final Converter.Type STRING
public final io.krakens.grok.api.Converter.IConverter<? extends java.lang.Object> converter
public final java.util.List<java.lang.String> aliases
public static Converter.Type[] values()
for (Converter.Type c : Converter.Type.values()) System.out.println(c);
public static Converter.Type 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