Enum BankQuantitySelection
- java.lang.Object
-
- java.lang.Enum<BankQuantitySelection>
-
- org.dreambot.api.methods.container.impl.bank.BankQuantitySelection
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BankQuantitySelection>
public enum BankQuantitySelection extends java.lang.Enum<BankQuantitySelection>
Created with IntelliJ IDEA.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getChildId()
static BankQuantitySelection
getSelection()
java.lang.String
toString()
static BankQuantitySelection
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BankQuantitySelection[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ONE
public static final BankQuantitySelection ONE
-
FIVE
public static final BankQuantitySelection FIVE
-
TEN
public static final BankQuantitySelection TEN
-
X
public static final BankQuantitySelection X
-
ALL
public static final BankQuantitySelection ALL
-
-
Method Detail
-
values
public static BankQuantitySelection[] 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 (BankQuantitySelection c : BankQuantitySelection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BankQuantitySelection 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
-
getSelection
public static BankQuantitySelection getSelection()
-
getChildId
public int getChildId()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<BankQuantitySelection>
-
-