Enum MapiPropertyType
- java.lang.Object
-
- java.lang.Enum<MapiPropertyType>
-
- microsoft.exchange.webservices.data.core.enumeration.property.MapiPropertyType
-
- All Implemented Interfaces:
Serializable,Comparable<MapiPropertyType>
public enum MapiPropertyType extends Enum<MapiPropertyType>
Defines the MAPI type of an extended property.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ApplicationTimeThe Application time.ApplicationTimeArrayThe Application time array.BinaryThe Binary.BinaryArrayThe Binary array.BooleanThe Boolean.CLSIDThe CLSID.CLSIDArrayThe CLSID array.CurrencyThe Currency.CurrencyArrayThe Currency array.DoubleThe Double.DoubleArrayThe Double array.ErrorThe Error.FloatThe Float.FloatArrayThe Float array.IntegerThe Integer.IntegerArrayThe Integer array.LongThe Long.LongArrayThe Long array.NullThe Null.ObjectThe Object.ObjectArrayThe Object array.ShortThe Short.ShortArrayThe Short array.StringThe String.StringArrayThe String array.SystemTimeThe System time.SystemTimeArrayThe System time array.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MapiPropertyTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MapiPropertyType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ApplicationTime
public static final MapiPropertyType ApplicationTime
The Application time.
-
ApplicationTimeArray
public static final MapiPropertyType ApplicationTimeArray
The Application time array.
-
Binary
public static final MapiPropertyType Binary
The Binary.
-
BinaryArray
public static final MapiPropertyType BinaryArray
The Binary array.
-
Boolean
public static final MapiPropertyType Boolean
The Boolean.
-
CLSID
public static final MapiPropertyType CLSID
The CLSID.
-
CLSIDArray
public static final MapiPropertyType CLSIDArray
The CLSID array.
-
Currency
public static final MapiPropertyType Currency
The Currency.
-
CurrencyArray
public static final MapiPropertyType CurrencyArray
The Currency array.
-
Double
public static final MapiPropertyType Double
The Double.
-
DoubleArray
public static final MapiPropertyType DoubleArray
The Double array.
-
Error
public static final MapiPropertyType Error
The Error.
-
Float
public static final MapiPropertyType Float
The Float.
-
FloatArray
public static final MapiPropertyType FloatArray
The Float array.
-
Integer
public static final MapiPropertyType Integer
The Integer.
-
IntegerArray
public static final MapiPropertyType IntegerArray
The Integer array.
-
Long
public static final MapiPropertyType Long
The Long.
-
LongArray
public static final MapiPropertyType LongArray
The Long array.
-
Null
public static final MapiPropertyType Null
The Null.
-
Object
public static final MapiPropertyType Object
The Object.
-
ObjectArray
public static final MapiPropertyType ObjectArray
The Object array.
-
Short
public static final MapiPropertyType Short
The Short.
-
ShortArray
public static final MapiPropertyType ShortArray
The Short array.
-
SystemTime
public static final MapiPropertyType SystemTime
The System time.
-
SystemTimeArray
public static final MapiPropertyType SystemTimeArray
The System time array.
-
String
public static final MapiPropertyType String
The String.
-
StringArray
public static final MapiPropertyType StringArray
The String array.
-
-
Method Detail
-
values
public static MapiPropertyType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MapiPropertyType c : MapiPropertyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MapiPropertyType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-