public enum BuiltInType extends Enum<BuiltInType>
Enum Constant and Description |
---|
ANY |
BOOLEAN |
CONTEXT |
DATE |
DATE_TIME |
DURATION_DAYS_TIME |
DURATION_YEAR_MONTH |
NUMBER |
STRING |
TIME |
UNDEFINED |
Modifier and Type | Method and Description |
---|---|
String |
getName() |
String[] |
getNames() |
String |
toString() |
static BuiltInType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuiltInType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuiltInType NUMBER
public static final BuiltInType STRING
public static final BuiltInType BOOLEAN
public static final BuiltInType DURATION_DAYS_TIME
public static final BuiltInType DURATION_YEAR_MONTH
public static final BuiltInType TIME
public static final BuiltInType DATE_TIME
public static final BuiltInType ANY
public static final BuiltInType DATE
public static final BuiltInType CONTEXT
public static final BuiltInType UNDEFINED
public static BuiltInType[] values()
for (BuiltInType c : BuiltInType.values()) System.out.println(c);
public static BuiltInType 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 getName()
public String[] getNames()
public String toString()
toString
in class Enum<BuiltInType>
Copyright © 2001–2020 JBoss by Red Hat. All rights reserved.