public enum Datatypes extends Enum<Datatypes>
| Enum Constant and Description |
|---|
Boolean |
Double |
Float |
Integer |
Long |
Number |
Sequence |
String |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Datatypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Datatypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Datatypes Integer
public static final Datatypes Long
public static final Datatypes Float
public static final Datatypes Boolean
public static final Datatypes String
public static final Datatypes Double
public static final Datatypes Number
public static final Datatypes Sequence
public static Datatypes[] values()
for (Datatypes c : Datatypes.values()) System.out.println(c);
public static Datatypes 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 nullCopyright © 2018. All rights reserved.