public enum ModelPrimitiveType extends Enum<ModelPrimitiveType>
| Enum Constant and Description |
|---|
BOOLEAN
Boolean model primitive type.
|
DATE
Date model primitive type.
|
DATETIME
Datetime model primitive type.
|
FLOAT
Float model primitive type.
|
INTEGER
Integer model primitive type.
|
LONG
Long model primitive type.
|
STRING
String model primitive type.
|
| Modifier and Type | Method and Description |
|---|---|
static ModelPrimitiveType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelPrimitiveType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelPrimitiveType BOOLEAN
public static final ModelPrimitiveType DATE
public static final ModelPrimitiveType DATETIME
public static final ModelPrimitiveType FLOAT
public static final ModelPrimitiveType INTEGER
public static final ModelPrimitiveType LONG
public static final ModelPrimitiveType STRING
public static ModelPrimitiveType[] values()
for (ModelPrimitiveType c : ModelPrimitiveType.values()) System.out.println(c);
public static ModelPrimitiveType 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 © 2015–2019 OREGOR LTD. All rights reserved.