public static enum SimpleType.BasicType extends Enum<SimpleType.BasicType>
| Enum Constant and Description |
|---|
BOOLEAN
literal type "Boolean"
|
DATE
literal type "Date"
|
INTEGER
literal type "Integer"
|
REAL
literal type "Read"
|
TEXT
literal type "Text"
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SimpleType.BasicType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleType.BasicType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleType.BasicType BOOLEAN
public static final SimpleType.BasicType DATE
public static final SimpleType.BasicType INTEGER
public static final SimpleType.BasicType REAL
public static final SimpleType.BasicType TEXT
public static SimpleType.BasicType[] values()
for (SimpleType.BasicType c : SimpleType.BasicType.values()) System.out.println(c);
public static SimpleType.BasicType 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 toString()
toString in class Enum<SimpleType.BasicType>Copyright © 2010 - 2020 Adobe. All Rights Reserved