public enum PropertyType extends Enum<PropertyType>
Enum Constant and Description |
---|
ApplicationTime |
ApplicationTimeArray |
Binary |
BinaryArray |
Boolean |
CLSID |
CLSIDArray |
Currency |
CurrencyArray |
Double |
DoubleArray |
Error |
Float |
FloatArray |
Integer |
IntegerArray |
Long |
LongArray |
Null |
Object |
ObjectArray |
Short |
ShortArray |
String |
StringArray |
SystemTime |
SystemTimeArray |
Modifier and Type | Method and Description |
---|---|
static PropertyType |
valueOf(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 ApplicationTime
public static final PropertyType ApplicationTimeArray
public static final PropertyType Binary
public static final PropertyType BinaryArray
public static final PropertyType Boolean
public static final PropertyType CLSID
public static final PropertyType CLSIDArray
public static final PropertyType Currency
public static final PropertyType CurrencyArray
public static final PropertyType Double
public static final PropertyType DoubleArray
public static final PropertyType Error
public static final PropertyType Float
public static final PropertyType FloatArray
public static final PropertyType Integer
public static final PropertyType IntegerArray
public static final PropertyType Long
public static final PropertyType LongArray
public static final PropertyType Null
public static final PropertyType Object
public static final PropertyType ObjectArray
public static final PropertyType Short
public static final PropertyType ShortArray
public static final PropertyType SystemTime
public static final PropertyType SystemTimeArray
public static final PropertyType String
public static final PropertyType StringArray
public static PropertyType[] values()
for (PropertyType c : PropertyType.values()) System.out.println(c);
public static PropertyType 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 © 2001–2024 MickaĆ«l Guessant. All rights reserved.