Package com.smartsheet.api.models.format
Enum Currency
- java.lang.Object
-
- java.lang.Enum<Currency>
-
- com.smartsheet.api.models.format.Currency
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCode()
java.lang.String
getSymbol()
static Currency
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Currency[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final Currency NONE
-
ARGENTINE_PESO
public static final Currency ARGENTINE_PESO
-
AUSTRALIAN_DOLLAR
public static final Currency AUSTRALIAN_DOLLAR
-
BRAZIL_REAIS
public static final Currency BRAZIL_REAIS
-
CANADIAN_DOLLAR
public static final Currency CANADIAN_DOLLAR
-
CHILEAN_PESOS
public static final Currency CHILEAN_PESOS
-
EURO
public static final Currency EURO
-
BRITISH_POUND
public static final Currency BRITISH_POUND
-
ISRAEL_SHEKEL
public static final Currency ISRAEL_SHEKEL
-
INDIA_RUPEES
public static final Currency INDIA_RUPEES
-
JAPAN_YEN
public static final Currency JAPAN_YEN
-
MEXICAN_PESOS
public static final Currency MEXICAN_PESOS
-
RUSSIAN_RUBLES
public static final Currency RUSSIAN_RUBLES
-
USD
public static final Currency USD
-
SOUTHAFRICA_RAND
public static final Currency SOUTHAFRICA_RAND
-
SWISS_FRANC
public static final Currency SWISS_FRANC
-
CHINA_YUAN
public static final Currency CHINA_YUAN
-
DENMARK_KRONER
public static final Currency DENMARK_KRONER
-
HONKKONG_DOLLAR
public static final Currency HONKKONG_DOLLAR
-
SOUTHKOREAN_WON
public static final Currency SOUTHKOREAN_WON
-
NORWAY_KRONER
public static final Currency NORWAY_KRONER
-
NEWZEALAND_DOLLAR
public static final Currency NEWZEALAND_DOLLAR
-
SWEDEN_KRONOR
public static final Currency SWEDEN_KRONOR
-
SINGAPORE_DOLLAR
public static final Currency SINGAPORE_DOLLAR
-
-
Field Detail
-
DEFAULT
public static final Currency DEFAULT
-
-
Method Detail
-
values
public static Currency[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Currency c : Currency.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Currency valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getCode
public java.lang.String getCode()
- Returns:
- the code
-
getSymbol
public java.lang.String getSymbol()
- Returns:
- the symbol
-
-