microsoft.exchange.webservices.data
Enum MapiPropertyType

java.lang.Object
  extended by java.lang.Enum<MapiPropertyType>
      extended by microsoft.exchange.webservices.data.MapiPropertyType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MapiPropertyType>

public enum MapiPropertyType
extends java.lang.Enum<MapiPropertyType>

Defines the MAPI type of an extended property.


Enum Constant Summary
ApplicationTime
          The Application time.
ApplicationTimeArray
          The Application time array.
Binary
          The Binary.
BinaryArray
          The Binary array.
Boolean
          The Boolean.
CLSID
          The CLSID.
CLSIDArray
          The CLSID array.
Currency
          The Currency.
CurrencyArray
          The Currency array.
Double
          The Double.
DoubleArray
          The Double array.
Error
          The Error.
Float
          The Float.
FloatArray
          The Float array.
Integer
          The Integer.
IntegerArray
          The Integer array.
Long
          The Long.
LongArray
          The Long array.
Null
          The Null.
Object
          The Object.
ObjectArray
          The Object array.
Short
          The Short.
ShortArray
          The Short array.
String
          The String.
StringArray
          The String array.
SystemTime
          The System time.
SystemTimeArray
          The System time array.
 
Method Summary
static MapiPropertyType valueOf(java.lang.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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null