public enum ExchangeRateDirection extends Enum<ExchangeRateDirection>
Java class for ExchangeRateDirection.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ExchangeRateDirection">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="TO_NETWORK"/>
<enumeration value="FROM_NETWORK"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FROM_NETWORK
The exchange rate is from
Network.currencyCode to ExchangeRate.currencyCode. |
TO_NETWORK
The exchange rate is from
ExchangeRate.currencyCode to Network.currencyCode. |
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static ExchangeRateDirection |
fromValue(String v) |
String |
value() |
static ExchangeRateDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExchangeRateDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExchangeRateDirection TO_NETWORK
ExchangeRate.currencyCode to Network.currencyCode.public static final ExchangeRateDirection FROM_NETWORK
Network.currencyCode to ExchangeRate.currencyCode.public static final ExchangeRateDirection UNKNOWN
public static ExchangeRateDirection[] values()
for (ExchangeRateDirection c : ExchangeRateDirection.values()) System.out.println(c);
public static ExchangeRateDirection 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 ExchangeRateDirection fromValue(String v)
Copyright © 2018. All Rights Reserved.