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 SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetChildId()static BankQuantitySelectiongetSelection()java.lang.StringtoString()static BankQuantitySelectionvalueOf(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- 
ONEpublic static final BankQuantitySelection ONE 
 - 
FIVEpublic static final BankQuantitySelection FIVE 
 - 
TENpublic static final BankQuantitySelection TEN 
 - 
Xpublic static final BankQuantitySelection X 
 - 
ALLpublic static final BankQuantitySelection ALL 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- java.lang.NullPointerException- if the argument is null
 
 - 
getSelectionpublic static BankQuantitySelection getSelection() 
 - 
getChildIdpublic int getChildId() 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Enum<BankQuantitySelection>
 
 
- 
 
-