public enum PrimitiveTypes extends Enum<PrimitiveTypes>
| Enum Constant and Description |
|---|
BOOLEAN |
CONSTANT |
ENUMERATED |
FILE |
IMAGES |
MAP |
NUMBER |
RANDOM |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static PrimitiveTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrimitiveTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrimitiveTypes STRING
public static final PrimitiveTypes NUMBER
public static final PrimitiveTypes ENUMERATED
public static final PrimitiveTypes CONSTANT
public static final PrimitiveTypes RANDOM
public static final PrimitiveTypes FILE
public static final PrimitiveTypes MAP
public static final PrimitiveTypes BOOLEAN
public static final PrimitiveTypes IMAGES
public static PrimitiveTypes[] values()
for (PrimitiveTypes c : PrimitiveTypes.values()) System.out.println(c);
public static PrimitiveTypes 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 © 2017. All Rights Reserved.