Enum ShiftWithdrawMode
- java.lang.Object
-
- java.lang.Enum<ShiftWithdrawMode>
-
- net.runelite.client.plugins.menuentryswapper.ShiftWithdrawMode
-
- All Implemented Interfaces:
Serializable
,Comparable<ShiftWithdrawMode>
public enum ShiftWithdrawMode extends Enum<ShiftWithdrawMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OFF
WITHDRAW_1
WITHDRAW_10
WITHDRAW_5
WITHDRAW_ALL
WITHDRAW_ALL_BUT_1
WITHDRAW_PLACEHOLDER
WITHDRAW_X
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getIdentifier()
int
getIdentifierChambersStorageUnit()
MenuAction
getMenuAction()
String
getName()
String
toString()
static ShiftWithdrawMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static ShiftWithdrawMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WITHDRAW_1
public static final ShiftWithdrawMode WITHDRAW_1
-
WITHDRAW_5
public static final ShiftWithdrawMode WITHDRAW_5
-
WITHDRAW_10
public static final ShiftWithdrawMode WITHDRAW_10
-
WITHDRAW_X
public static final ShiftWithdrawMode WITHDRAW_X
-
WITHDRAW_ALL
public static final ShiftWithdrawMode WITHDRAW_ALL
-
WITHDRAW_ALL_BUT_1
public static final ShiftWithdrawMode WITHDRAW_ALL_BUT_1
-
WITHDRAW_PLACEHOLDER
public static final ShiftWithdrawMode WITHDRAW_PLACEHOLDER
-
OFF
public static final ShiftWithdrawMode OFF
-
-
Method Detail
-
values
public static ShiftWithdrawMode[] 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 (ShiftWithdrawMode c : ShiftWithdrawMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ShiftWithdrawMode 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<ShiftWithdrawMode>
-
getName
public String getName()
-
getMenuAction
public MenuAction getMenuAction()
-
getIdentifier
public int getIdentifier()
-
getIdentifierChambersStorageUnit
public int getIdentifierChambersStorageUnit()
-
-