Package org.dreambot.api.randoms
Enum RandomEvent
- java.lang.Object
-
- java.lang.Enum<RandomEvent>
-
- org.dreambot.api.randoms.RandomEvent
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RandomEvent>
public enum RandomEvent extends java.lang.Enum<RandomEvent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BANK_NOTIFICATIONBANK_PINBANK_PIN_CONFIRMBANK_TUTORIALBREAKDEATHS_DOORDISMISSGAME_LAYOUTGENIELOGINRESIZABLE_DISABLERROOF_DISABLERWELCOME_SCREENZOOM_SOLVER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static RandomEventvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RandomEvent[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOGIN
public static final RandomEvent LOGIN
-
WELCOME_SCREEN
public static final RandomEvent WELCOME_SCREEN
-
BANK_PIN
public static final RandomEvent BANK_PIN
-
DISMISS
public static final RandomEvent DISMISS
-
BANK_PIN_CONFIRM
public static final RandomEvent BANK_PIN_CONFIRM
-
BREAK
public static final RandomEvent BREAK
-
RESIZABLE_DISABLER
public static final RandomEvent RESIZABLE_DISABLER
-
ROOF_DISABLER
public static final RandomEvent ROOF_DISABLER
-
ZOOM_SOLVER
public static final RandomEvent ZOOM_SOLVER
-
GENIE
public static final RandomEvent GENIE
-
BANK_TUTORIAL
public static final RandomEvent BANK_TUTORIAL
-
BANK_NOTIFICATION
public static final RandomEvent BANK_NOTIFICATION
-
DEATHS_DOOR
public static final RandomEvent DEATHS_DOOR
-
GAME_LAYOUT
public static final RandomEvent GAME_LAYOUT
-
-
Method Detail
-
values
public static RandomEvent[] 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 (RandomEvent c : RandomEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RandomEvent 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
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<RandomEvent>
-
-