Enum UserConfigurationDictionaryObjectType
- java.lang.Object
-
- java.lang.Enum<UserConfigurationDictionaryObjectType>
-
- microsoft.exchange.webservices.data.core.enumeration.property.UserConfigurationDictionaryObjectType
-
- All Implemented Interfaces:
Serializable,Comparable<UserConfigurationDictionaryObjectType>
public enum UserConfigurationDictionaryObjectType extends Enum<UserConfigurationDictionaryObjectType>
Identifies the user configuration dictionary key and value types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BooleanThe Boolean.ByteThe Byte.ByteArrayThe Byte array.DateTimeThe Date time.Integer32The Integer32.Integer64The Integer64.StringThe String.StringArrayThe String array.UnsignedInteger32The Unsigned integer32.UnsignedInteger64The Unsigned integer64.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UserConfigurationDictionaryObjectTypevalueOf(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.
-
-
-
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(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
-
-