public enum ExchangeIdFormat extends java.lang.Enum<ExchangeIdFormat>
| Enum Constant and Description |
|---|
ENTRY_ID
entry Id
|
EWS_ID
ews Id
|
IMMUTABLE_ENTRY_ID
immutable Entry Id
|
REST_ID
rest Id
|
REST_IMMUTABLE_ENTRY_ID
rest Immutable Entry Id
|
UNEXPECTED_VALUE
For ExchangeIdFormat values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static ExchangeIdFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExchangeIdFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExchangeIdFormat ENTRY_ID
public static final ExchangeIdFormat EWS_ID
public static final ExchangeIdFormat IMMUTABLE_ENTRY_ID
public static final ExchangeIdFormat REST_ID
public static final ExchangeIdFormat REST_IMMUTABLE_ENTRY_ID
public static final ExchangeIdFormat UNEXPECTED_VALUE
public static ExchangeIdFormat[] values()
for (ExchangeIdFormat c : ExchangeIdFormat.values()) System.out.println(c);
public static ExchangeIdFormat valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null