Package de.mhus.lib.core.currency
Enum CCurrency.CRYPTO_CURRENCY
- java.lang.Object
-
- java.lang.Enum<CCurrency.CRYPTO_CURRENCY>
-
- de.mhus.lib.core.currency.CCurrency.CRYPTO_CURRENCY
-
- All Implemented Interfaces:
Serializable,Comparable<CCurrency.CRYPTO_CURRENCY>
- Enclosing class:
- CCurrency
public static enum CCurrency.CRYPTO_CURRENCY extends Enum<CCurrency.CRYPTO_CURRENCY>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetScheme()StringgetTitle()CCurrencytoCurrency()static CCurrency.CRYPTO_CURRENCYvalueOf(String name)Returns the enum constant of this type with the specified name.static CCurrency.CRYPTO_CURRENCY[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final CCurrency.CRYPTO_CURRENCY UNKNOWN
-
BTC
public static final CCurrency.CRYPTO_CURRENCY BTC
-
LTC
public static final CCurrency.CRYPTO_CURRENCY LTC
-
NMC
public static final CCurrency.CRYPTO_CURRENCY NMC
-
BCH
public static final CCurrency.CRYPTO_CURRENCY BCH
-
XRP
public static final CCurrency.CRYPTO_CURRENCY XRP
-
DASH
public static final CCurrency.CRYPTO_CURRENCY DASH
-
XMR
public static final CCurrency.CRYPTO_CURRENCY XMR
-
XLM
public static final CCurrency.CRYPTO_CURRENCY XLM
-
ETH
public static final CCurrency.CRYPTO_CURRENCY ETH
-
ETC
public static final CCurrency.CRYPTO_CURRENCY ETC
-
ZEC
public static final CCurrency.CRYPTO_CURRENCY ZEC
-
EOS
public static final CCurrency.CRYPTO_CURRENCY EOS
-
NEO
public static final CCurrency.CRYPTO_CURRENCY NEO
-
USDT
public static final CCurrency.CRYPTO_CURRENCY USDT
-
EURT
public static final CCurrency.CRYPTO_CURRENCY EURT
-
-
Method Detail
-
values
public static CCurrency.CRYPTO_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 (CCurrency.CRYPTO_CURRENCY c : CCurrency.CRYPTO_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 CCurrency.CRYPTO_CURRENCY valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toCurrency
public CCurrency toCurrency()
-
getTitle
public String getTitle()
-
getScheme
public String getScheme()
-
-