Package org.dreambot.api.methods.hotkeys
Enum PlayerAttackOption
- java.lang.Object
- 
- java.lang.Enum<PlayerAttackOption>
- 
- org.dreambot.api.methods.hotkeys.PlayerAttackOption
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<PlayerAttackOption>
 
 public enum PlayerAttackOption extends java.lang.Enum<PlayerAttackOption> Created by Nezz on 5/24/2016.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ALWAYS_RIGHTDEPEND_ON_CB_LEVELHIDDENLEFT_CLICK_AVAILABLE
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConfig()intgetVal()static PlayerAttackOptionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PlayerAttackOption[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
LEFT_CLICK_AVAILABLEpublic static final PlayerAttackOption LEFT_CLICK_AVAILABLE 
 - 
DEPEND_ON_CB_LEVELpublic static final PlayerAttackOption DEPEND_ON_CB_LEVEL 
 - 
ALWAYS_RIGHTpublic static final PlayerAttackOption ALWAYS_RIGHT 
 - 
HIDDENpublic static final PlayerAttackOption HIDDEN 
 
- 
 - 
Method Detail- 
valuespublic static PlayerAttackOption[] 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 (PlayerAttackOption c : PlayerAttackOption.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static PlayerAttackOption 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
 
 - 
getConfigpublic int getConfig() 
 - 
getValpublic int getVal() 
 
- 
 
-