public enum BuiltInScalarType extends Enum<BuiltInScalarType>
| Enum Constant and Description |
|---|
BOOLEAN |
DATE_ONLY |
DATE_TIME |
DATE_TIME_ONLY |
FILE |
INTEGER |
NUMBER |
STRING |
TIME_ONLY |
| Modifier and Type | Method and Description |
|---|---|
String |
getType() |
static boolean |
isBuiltInScalarType(String type) |
static BuiltInScalarType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuiltInScalarType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuiltInScalarType STRING
public static final BuiltInScalarType NUMBER
public static final BuiltInScalarType INTEGER
public static final BuiltInScalarType BOOLEAN
public static final BuiltInScalarType DATE_ONLY
public static final BuiltInScalarType TIME_ONLY
public static final BuiltInScalarType DATE_TIME_ONLY
public static final BuiltInScalarType DATE_TIME
public static final BuiltInScalarType FILE
public static BuiltInScalarType[] values()
for (BuiltInScalarType c : BuiltInScalarType.values()) System.out.println(c);
public static BuiltInScalarType 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 static boolean isBuiltInScalarType(String type)
public String getType()
Copyright © 2016. All rights reserved.