public enum Coin extends Enum<Coin>
| Enum Constant and Description |
|---|
BITCOIN |
BITCOINCASH |
BITCOINSV |
DASH |
DOGECOIN |
ETHEREUM |
ETHEREUM_CLASSIC |
LITECOIN |
RIPPLE |
TETHER |
TRON |
ZCASH |
| Modifier and Type | Method and Description |
|---|---|
String |
getIso() |
static Coin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Coin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Coin BITCOIN
public static final Coin BITCOINSV
public static final Coin BITCOINCASH
public static final Coin LITECOIN
public static final Coin RIPPLE
public static final Coin DASH
public static final Coin ZCASH
public static final Coin DOGECOIN
public static final Coin TETHER
public static final Coin ETHEREUM
public static final Coin ETHEREUM_CLASSIC
public static final Coin TRON
public static Coin[] values()
for (Coin c : Coin.values()) System.out.println(c);
public static Coin 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 getIso()
Copyright © 2020. All rights reserved.