public enum FinanceExceptionType extends java.lang.Enum<FinanceExceptionType>
| Enum Constant and Description |
|---|
CURRENCY_NOT_SUPPORTED
Die Währung wird nicht unterstützt
|
DATA_NOT_FOUND
Es wurden keine Daten gefunden
|
DATE_TOO_OLD
Das angegebene Datum ist zu alt.
|
NETWORK
Ein Netzwerkfehler ist aufgetreten
|
OTHER
Sonstiger Fehler
|
| Modifier and Type | Method and Description |
|---|---|
static FinanceExceptionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FinanceExceptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FinanceExceptionType NETWORK
public static final FinanceExceptionType DATA_NOT_FOUND
public static final FinanceExceptionType DATE_TOO_OLD
public static final FinanceExceptionType CURRENCY_NOT_SUPPORTED
public static final FinanceExceptionType OTHER
public static FinanceExceptionType[] values()
for (FinanceExceptionType c : FinanceExceptionType.values()) System.out.println(c);
public static FinanceExceptionType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null