Package com.independentsoft.graph
Enum Class ExtendedPropertyType
- All Implemented Interfaces:
Serializable,Comparable<ExtendedPropertyType>,Constable
Defines the type an extended property.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe property is of type ApplicationTime.The property is of type ApplicationTimeArray.The property is of type Binary.The property is of type BinaryArray.The property is of type Boolean.The property is of type CLSID.The property is of type CLSIDArray.The property is of type Currency.The property is of type CurrencyArray.The property is of type Double.The property is of type DoubleArray.The property is of type Error.The property is of type Float.The property is of type FloatArray.The property is of type Integer.The property is of type IntegerArray.The property is of type Long.The property is of type LongArray.The property is of type Null.The property is of type Object.The property is of type ObjectArray.The property is of type Short.The property is of type ShortArray.The property is of type String.The property is of type StringArray.The property is of type SystemTime.The property is of type SystemTimeArray. -
Method Summary
Modifier and TypeMethodDescriptionstatic ExtendedPropertyTypeReturns the enum constant of this class with the specified name.static ExtendedPropertyType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
APPLICATION_TIME
The property is of type ApplicationTime. -
APPLICATION_TIME_ARRAY
The property is of type ApplicationTimeArray. -
BINARY
The property is of type Binary. -
BINARY_ARRAY
The property is of type BinaryArray. -
BOOLEAN
The property is of type Boolean. -
CLSID
The property is of type CLSID. -
CLSID_ARRAY
The property is of type CLSIDArray. -
CURRENCY
The property is of type Currency. -
CURRENCY_ARRAY
The property is of type CurrencyArray. -
DOUBLE
The property is of type Double. -
DOUBLE_ARRAY
The property is of type DoubleArray. -
ERROR
The property is of type Error. -
FLOAT
The property is of type Float. -
FLOAT_ARRAY
The property is of type FloatArray. -
INTEGER
The property is of type Integer. -
INTEGER_ARRAY
The property is of type IntegerArray. -
LONG
The property is of type Long. -
LONG_ARRAY
The property is of type LongArray. -
NULL
The property is of type Null. -
OBJECT
The property is of type Object. -
OBJECT_ARRAY
The property is of type ObjectArray. -
SHORT
The property is of type Short. -
SHORT_ARRAY
The property is of type ShortArray. -
SYSTEM_TIME
The property is of type SystemTime. -
SYSTEM_TIME_ARRAY
The property is of type SystemTimeArray. -
STRING
The property is of type String. -
STRING_ARRAY
The property is of type StringArray.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-