public static enum Type.TypeID extends java.lang.Enum<Type.TypeID>
Enum Constant and Description |
---|
BINARY |
BOOLEAN |
DATE |
DECIMAL |
DOUBLE |
FIXED |
FLOAT |
INTEGER |
LIST |
LONG |
MAP |
STRING |
STRUCT |
TIME |
TIMESTAMP |
UUID |
Modifier and Type | Method and Description |
---|---|
java.lang.Class<?> |
javaClass() |
static Type.TypeID |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Type.TypeID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type.TypeID BOOLEAN
public static final Type.TypeID INTEGER
public static final Type.TypeID LONG
public static final Type.TypeID FLOAT
public static final Type.TypeID DOUBLE
public static final Type.TypeID DATE
public static final Type.TypeID TIME
public static final Type.TypeID TIMESTAMP
public static final Type.TypeID STRING
public static final Type.TypeID UUID
public static final Type.TypeID FIXED
public static final Type.TypeID BINARY
public static final Type.TypeID DECIMAL
public static final Type.TypeID STRUCT
public static final Type.TypeID LIST
public static final Type.TypeID MAP
public static Type.TypeID[] values()
for (Type.TypeID c : Type.TypeID.values()) System.out.println(c);
public static Type.TypeID 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 java.lang.Class<?> javaClass()