| Enum Constant and Description |
|---|
BANK_CREATION |
BANK_DELETE |
BANK_DEPOSIT |
BANK_WITHDRAW |
CONVERT |
EXCHANGE |
PAYDAY_TAX |
PAYDAY_WAGE |
PAYMENT |
PLUGIN |
SPOUT |
UNKNOWN |
USER |
VAULT |
| Modifier and Type | Method and Description |
|---|---|
static Cause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Cause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cause VAULT
public static final Cause USER
public static final Cause PLUGIN
public static final Cause SPOUT
public static final Cause BANK_CREATION
public static final Cause CONVERT
public static final Cause EXCHANGE
public static final Cause PAYMENT
public static final Cause BANK_DEPOSIT
public static final Cause BANK_WITHDRAW
public static final Cause BANK_DELETE
public static final Cause PAYDAY_TAX
public static final Cause PAYDAY_WAGE
public static final Cause UNKNOWN
public static Cause[] values()
for (Cause c : Cause.values()) System.out.println(c);
public static Cause 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