microsoft.exchange.webservices.data
Enum UserConfigurationDictionaryObjectType

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

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

Identifies the user configuration dictionary key and value types.


Enum Constant Summary
Boolean
          The Boolean.
Byte
          The Byte.
ByteArray
          The Byte array.
DateTime
          The Date time.
Integer32
          The Integer32.
Integer64
          The Integer64.
String
          The String.
StringArray
          The String array.
UnsignedInteger32
          The Unsigned integer32.
UnsignedInteger64
          The Unsigned integer64.
 
Method Summary
static UserConfigurationDictionaryObjectType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static UserConfigurationDictionaryObjectType[] 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

DateTime

public static final UserConfigurationDictionaryObjectType DateTime
The Date time.


Boolean

public static final UserConfigurationDictionaryObjectType Boolean
The Boolean.


Byte

public static final UserConfigurationDictionaryObjectType Byte
The Byte.


String

public static final UserConfigurationDictionaryObjectType String
The String.


Integer32

public static final UserConfigurationDictionaryObjectType Integer32
The Integer32.


UnsignedInteger32

public static final UserConfigurationDictionaryObjectType UnsignedInteger32
The Unsigned integer32.


Integer64

public static final UserConfigurationDictionaryObjectType Integer64
The Integer64.


UnsignedInteger64

public static final UserConfigurationDictionaryObjectType UnsignedInteger64
The Unsigned integer64.


StringArray

public static final UserConfigurationDictionaryObjectType StringArray
The String array.


ByteArray

public static final UserConfigurationDictionaryObjectType ByteArray
The Byte array.

Method Detail

values

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

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

valueOf

public static UserConfigurationDictionaryObjectType 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