public enum RequestServerVersion extends java.lang.Enum<RequestServerVersion>
| Enum Constant and Description |
|---|
EXCHANGE_2007
Target the schema files for the initial release version of Exchange 2007.
|
EXCHANGE_2007_SP1
Target the schema files for Exchange 2007 Service Pack 1 (SP1).
|
EXCHANGE_2010
Target the schema files for Exchange 2010.
|
EXCHANGE_2010_SP1
Target the schema files for Exchange 2010 Service Pack 1 (SP1).
|
EXCHANGE_2010_SP2
Target the schema files for Exchange 2010 Service Pack 2 (SP2).
|
EXCHANGE_2013
Target the schema files for Exchange 2013.
|
EXCHANGE_2013_SP1
Target the schema files for Exchange 2013 Service Pack 1 (SP1).
|
EXCHANGE_2016
Target the schema files for Exchange 2016.
|
| Modifier and Type | Method and Description |
|---|---|
static RequestServerVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequestServerVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestServerVersion EXCHANGE_2007
public static final RequestServerVersion EXCHANGE_2007_SP1
public static final RequestServerVersion EXCHANGE_2010
public static final RequestServerVersion EXCHANGE_2010_SP1
public static final RequestServerVersion EXCHANGE_2010_SP2
public static final RequestServerVersion EXCHANGE_2013
public static final RequestServerVersion EXCHANGE_2013_SP1
public static final RequestServerVersion EXCHANGE_2016
public static RequestServerVersion[] values()
for (RequestServerVersion c : RequestServerVersion.values()) System.out.println(c);
public static RequestServerVersion 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