public enum ExchangeVersion extends Enum<ExchangeVersion>
Java class for ExchangeVersion.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ExchangeVersion">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Exchange2010"/>
<enumeration value="Exchange2010_SP1"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
EXCHANGE_2010 |
EXCHANGE_2010_SP_1 |
| Modifier and Type | Method and Description |
|---|---|
static ExchangeVersion |
fromValue(String v) |
String |
value() |
static ExchangeVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExchangeVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExchangeVersion EXCHANGE_2010
public static final ExchangeVersion EXCHANGE_2010_SP_1
public static ExchangeVersion[] values()
for (ExchangeVersion c : ExchangeVersion.values()) System.out.println(c);
public static ExchangeVersion valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String value()
public static ExchangeVersion fromValue(String v)
Copyright © 2014 Jasig. All Rights Reserved.