public enum ExchangeRateRefreshRate extends Enum<ExchangeRateRefreshRate>
Java class for ExchangeRateRefreshRate.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ExchangeRateRefreshRate">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="FIXED"/>
<enumeration value="DAILY"/>
<enumeration value="MONTHLY"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DAILY
The exchange rate will be updated automatically by Google every day using the latest day's
rate.
|
FIXED
The exchange rate is input manually and not refreshed.
|
MONTHLY
The exchange rate will be updated automatically by Google every month using the latest month's
rate.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static ExchangeRateRefreshRate |
fromValue(String v) |
String |
value() |
static ExchangeRateRefreshRate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExchangeRateRefreshRate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExchangeRateRefreshRate FIXED
public static final ExchangeRateRefreshRate DAILY
public static final ExchangeRateRefreshRate MONTHLY
public static final ExchangeRateRefreshRate UNKNOWN
public static ExchangeRateRefreshRate[] values()
for (ExchangeRateRefreshRate c : ExchangeRateRefreshRate.values()) System.out.println(c);
public static ExchangeRateRefreshRate 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 ExchangeRateRefreshRate fromValue(String v)
Copyright © 2018. All Rights Reserved.