public enum BitsoCurrency extends Enum<BitsoCurrency>
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static BitsoCurrency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BitsoCurrency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BitsoCurrency BTC
public static final BitsoCurrency MXN
public static final BitsoCurrency ETH
public static final BitsoCurrency XRP
public static BitsoCurrency[] values()
for (BitsoCurrency c : BitsoCurrency.values()) System.out.println(c);
public static BitsoCurrency 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 toString()
toString in class Enum<BitsoCurrency>Copyright © 2017. All rights reserved.