public enum SimpleType extends Enum<SimpleType>
| Enum Constant and Description |
|---|
BOOLEAN |
BYTEARRAY |
CLASS |
DATAHANDLER |
DATE |
DOUBLE |
ENUM |
FLOAT |
INT |
LIST |
LONG |
SET |
SHORT |
STRING |
UNKNOWN |
VOID |
| Modifier and Type | Method and Description |
|---|---|
static SimpleType |
get(Class<?> instanceClass) |
static SimpleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleType ENUM
public static final SimpleType STRING
public static final SimpleType LONG
public static final SimpleType SHORT
public static final SimpleType INT
public static final SimpleType BOOLEAN
public static final SimpleType FLOAT
public static final SimpleType DOUBLE
public static final SimpleType DATE
public static final SimpleType CLASS
public static final SimpleType DATAHANDLER
public static final SimpleType BYTEARRAY
public static final SimpleType LIST
public static final SimpleType SET
public static final SimpleType VOID
public static final SimpleType UNKNOWN
public static SimpleType[] values()
for (SimpleType c : SimpleType.values()) System.out.println(c);
public static SimpleType 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 static SimpleType get(Class<?> instanceClass)
Copyright © 2018 OpenSource BIM. All rights reserved.