public enum DataPropertyType extends Enum<DataPropertyType>
| Enum Constant and Description |
|---|
Array |
Boolean |
Date |
Decimal |
Enum |
Object |
String |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static DataPropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataPropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataPropertyType String
public static final DataPropertyType Boolean
public static final DataPropertyType Decimal
public static final DataPropertyType Object
public static final DataPropertyType Array
public static final DataPropertyType Date
public static final DataPropertyType Enum
public static final DataPropertyType Unknown
public static DataPropertyType[] values()
for (DataPropertyType c : DataPropertyType.values()) System.out.println(c);
public static DataPropertyType 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 © 2020. All rights reserved.