public static enum EconomyAPI.VaultHookType extends java.lang.Enum<EconomyAPI.VaultHookType>
| Enum Constant and Description |
|---|
NONE
Do not hook to Vault at all
|
PROVIDER
Provide Economy services
|
USER
Use Vault as an Economy provider service
|
| Modifier and Type | Method and Description |
|---|---|
static EconomyAPI.VaultHookType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EconomyAPI.VaultHookType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EconomyAPI.VaultHookType NONE
public static final EconomyAPI.VaultHookType USER
public static final EconomyAPI.VaultHookType PROVIDER
public static EconomyAPI.VaultHookType[] values()
for (EconomyAPI.VaultHookType c : EconomyAPI.VaultHookType.values()) System.out.println(c);
public static EconomyAPI.VaultHookType 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