public enum PropertyType extends java.lang.Enum<PropertyType>
| Modifier and Type | Method and Description |
|---|---|
static PropertyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyType INTEGER16
public static final PropertyType INTEGER32
public static final PropertyType FLOATING32
public static final PropertyType FLOATING64
public static final PropertyType CURRENCY
public static final PropertyType FLOATING_TIME
public static final PropertyType ERROR_CODE
public static final PropertyType BOOLEAN
public static final PropertyType INTEGER64
public static final PropertyType TIME
public static final PropertyType STRING
public static final PropertyType BINARY
public static final PropertyType STRING8
public static final PropertyType GUID
public static final PropertyType OBJECT
public static final PropertyType MULTIPLE_INTEGER16
public static final PropertyType MULTIPLE_INTEGER32
public static final PropertyType MULTIPLE_FLOATING32
public static final PropertyType MULTIPLE_FLOATING64
public static final PropertyType MULTIPLE_CURRENCY
public static final PropertyType MULTIPLE_FLOATING_TIME
public static final PropertyType MULTIPLE_INTEGER64
public static final PropertyType MULTIPLE_GUID
public static final PropertyType MULTIPLE_TIME
public static final PropertyType MULTIPLE_STRING
public static final PropertyType MULTIPLE_BINARY
public static final PropertyType MULTIPLE_STRING8
public static PropertyType[] values()
for (PropertyType c : PropertyType.values()) System.out.println(c);
public static PropertyType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null