Enum Grouping
- java.lang.Object
-
- java.lang.Enum<Grouping>
-
- com.osrsbots.orb.api.interactables.widgets.Grouping
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static @Nullable GroupinggetFromName(java.lang.String name)static intgetId(java.lang.String name)java.lang.StringgetName()static @Nullable GroupinggetSelectedActivity()static booleanisOpen()static booleanopen()static booleanopen(boolean useMouse)static booleansetSelection(Grouping activity)static booleanuseTeleport(Grouping activity)static GroupingvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Grouping[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BARBARIAN_ASSAULT
public static final Grouping BARBARIAN_ASSAULT
-
BLAST_FURNACE
public static final Grouping BLAST_FURNACE
-
BURTHORPE_GAMES_ROOM
public static final Grouping BURTHORPE_GAMES_ROOM
-
CASTLE_WARS
public static final Grouping CASTLE_WARS
-
CLAN_WARS
public static final Grouping CLAN_WARS
-
FISHING_TRAWLER
public static final Grouping FISHING_TRAWLER
-
GIANTS_FOUNDRY
public static final Grouping GIANTS_FOUNDRY
-
GUARDIANS_OF_THE_RIFT
public static final Grouping GUARDIANS_OF_THE_RIFT
-
LAST_MAN_STANDING
public static final Grouping LAST_MAN_STANDING
-
MAGE_TRAINING_ARENA
public static final Grouping MAGE_TRAINING_ARENA
-
NIGHTMARE_ZONE
public static final Grouping NIGHTMARE_ZONE
-
PEST_CONTROL
public static final Grouping PEST_CONTROL
-
RAT_PITS
public static final Grouping RAT_PITS
-
SOUL_WARS
public static final Grouping SOUL_WARS
-
TITHE_FARM
public static final Grouping TITHE_FARM
-
TROUBLE_BREWING
public static final Grouping TROUBLE_BREWING
-
TZHAAR_FIGHT_PIT
public static final Grouping TZHAAR_FIGHT_PIT
-
-
Method Detail
-
values
public static Grouping[] 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 (Grouping c : Grouping.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Grouping 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
-
getName
public java.lang.String getName()
-
getId
public static int getId(java.lang.String name)
-
getFromName
@Nullable public static @Nullable Grouping getFromName(java.lang.String name)
-
isOpen
public static boolean isOpen()
-
open
public static boolean open()
-
open
public static boolean open(boolean useMouse)
-
getSelectedActivity
@Nullable public static @Nullable Grouping getSelectedActivity()
-
setSelection
public static boolean setSelection(@Nonnull Grouping activity)
-
useTeleport
public static boolean useTeleport(@Nonnull Grouping activity)
-
-