davmail.exchange.dav
Enum PropertyType

java.lang.Object
  extended by java.lang.Enum<PropertyType>
      extended by davmail.exchange.dav.PropertyType
All Implemented Interfaces:
Serializable, Comparable<PropertyType>

public enum PropertyType
extends Enum<PropertyType>

MAPI property types.


Enum Constant Summary
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
           
 
Method Summary
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.
 
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 PropertyType ApplicationTime

ApplicationTimeArray

public static final PropertyType ApplicationTimeArray

Binary

public static final PropertyType Binary

BinaryArray

public static final PropertyType BinaryArray

Boolean

public static final PropertyType Boolean

CLSID

public static final PropertyType CLSID

CLSIDArray

public static final PropertyType CLSIDArray

Currency

public static final PropertyType Currency

CurrencyArray

public static final PropertyType CurrencyArray

Double

public static final PropertyType Double

DoubleArray

public static final PropertyType DoubleArray

Error

public static final PropertyType Error

Float

public static final PropertyType Float

FloatArray

public static final PropertyType FloatArray

Integer

public static final PropertyType Integer

IntegerArray

public static final PropertyType IntegerArray

Long

public static final PropertyType Long

LongArray

public static final PropertyType LongArray

Null

public static final PropertyType Null

Object

public static final PropertyType Object

ObjectArray

public static final PropertyType ObjectArray

Short

public static final PropertyType Short

ShortArray

public static final PropertyType ShortArray

SystemTime

public static final PropertyType SystemTime

SystemTimeArray

public static final PropertyType SystemTimeArray

String

public static final PropertyType String

StringArray

public static final PropertyType StringArray
Method Detail

values

public static PropertyType[] 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 (PropertyType c : PropertyType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static PropertyType 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 name
NullPointerException - if the argument is null


Copyright © 2001-2013 MickaĆ«l Guessant. All Rights Reserved.