public enum TypeId extends Enum<TypeId>
| Enum Constant and Description |
|---|
ANY |
ARRAY |
BOOLEAN |
DATE_ONLY |
DATE_TIME |
DATE_TIME_ONLY |
FILE |
INTEGER |
NULL |
NUMBER |
OBJECT |
STRING |
TIME_ONLY |
| Modifier and Type | Method and Description |
|---|---|
String |
getType() |
static TypeId |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeId STRING
public static final TypeId ANY
public static final TypeId NULL
public static final TypeId NUMBER
public static final TypeId INTEGER
public static final TypeId BOOLEAN
public static final TypeId DATE_ONLY
public static final TypeId TIME_ONLY
public static final TypeId DATE_TIME_ONLY
public static final TypeId DATE_TIME
public static final TypeId FILE
public static final TypeId OBJECT
public static final TypeId ARRAY
public static TypeId[] values()
for (TypeId c : TypeId.values()) System.out.println(c);
public static TypeId valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getType()
Copyright © 2018. All rights reserved.