Package net.storm.sdk.items
Enum Bank.Component
- java.lang.Object
-
- java.lang.Enum<Bank.Component>
-
- net.storm.sdk.items.Bank.Component
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Bank.Component>
- Enclosing class:
- Bank
public static enum Bank.Component extends java.lang.Enum<Bank.Component>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Bank.Component
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Bank.Component[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BANK_REARRANGE_SWAP
public static final Bank.Component BANK_REARRANGE_SWAP
-
BANK_REARRANGE_INSERT
public static final Bank.Component BANK_REARRANGE_INSERT
-
BANK_WITHDRAW_ITEM
public static final Bank.Component BANK_WITHDRAW_ITEM
-
BANK_WITHDRAW_NOTE
public static final Bank.Component BANK_WITHDRAW_NOTE
-
BANK_QUANTITY_BUTTONS_CONTAINER
public static final Bank.Component BANK_QUANTITY_BUTTONS_CONTAINER
-
BANK_QUANTITY_ONE
public static final Bank.Component BANK_QUANTITY_ONE
-
BANK_QUANTITY_FIVE
public static final Bank.Component BANK_QUANTITY_FIVE
-
BANK_QUANTITY_TEN
public static final Bank.Component BANK_QUANTITY_TEN
-
BANK_QUANTITY_X
public static final Bank.Component BANK_QUANTITY_X
-
BANK_QUANTITY_ALL
public static final Bank.Component BANK_QUANTITY_ALL
-
BANK_PLACEHOLDERS_BUTTON
public static final Bank.Component BANK_PLACEHOLDERS_BUTTON
-
EMPTY
public static final Bank.Component EMPTY
-
-
Method Detail
-
values
public static Bank.Component[] 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 (Bank.Component c : Bank.Component.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Bank.Component valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-