Package com.epicbot.api.os.model.game
Enum WidgetID.WidgetInfo
- java.lang.Object
-
- java.lang.Enum<WidgetID.WidgetInfo>
-
- com.epicbot.api.os.model.game.WidgetID.WidgetInfo
-
- All Implemented Interfaces:
WidgetInfo
,java.io.Serializable
,java.lang.Comparable<WidgetID.WidgetInfo>
- Enclosing class:
- WidgetID
public static enum WidgetID.WidgetInfo extends java.lang.Enum<WidgetID.WidgetInfo> implements WidgetInfo
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getChildId()
int
getGroupId()
int
getId()
Gets the ID of the group-child pairing.static WidgetID.WidgetInfo
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WidgetID.WidgetInfo[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BANK_TITLE_BAR
public static final WidgetID.WidgetInfo BANK_TITLE_BAR
-
BANK_ITEM_CONTAINER
public static final WidgetID.WidgetInfo BANK_ITEM_CONTAINER
-
BANK_INVENTORY_ITEMS_CONTAINER
public static final WidgetID.WidgetInfo BANK_INVENTORY_ITEMS_CONTAINER
-
BANK_SCROLLBAR
public static final WidgetID.WidgetInfo BANK_SCROLLBAR
-
EQUIPMENT
public static final WidgetID.WidgetInfo EQUIPMENT
-
GRAND_EXCHANGE_INVENTORY_ITEMS_CONTAINER
public static final WidgetID.WidgetInfo GRAND_EXCHANGE_INVENTORY_ITEMS_CONTAINER
-
TRADE
public static final WidgetID.WidgetInfo TRADE
-
TRADE_OTHER
public static final WidgetID.WidgetInfo TRADE_OTHER
-
INVENTORY
public static final WidgetID.WidgetInfo INVENTORY
-
MINIMAP_HEALTH_ORB_TEXT
public static final WidgetID.WidgetInfo MINIMAP_HEALTH_ORB_TEXT
-
MINIMAP_QUICK_PRAYER_ORB
public static final WidgetID.WidgetInfo MINIMAP_QUICK_PRAYER_ORB
-
MINIMAP_RUN_ORB
public static final WidgetID.WidgetInfo MINIMAP_RUN_ORB
-
MINIMAP_RUN_ORB_TEXT
public static final WidgetID.WidgetInfo MINIMAP_RUN_ORB_TEXT
-
MINIMAP_SPEC_ORB_TEXT
public static final WidgetID.WidgetInfo MINIMAP_SPEC_ORB_TEXT
-
MINIMAP_WORLDMAP_ORB
public static final WidgetID.WidgetInfo MINIMAP_WORLDMAP_ORB
-
MINIMAP_XP_ORB
public static final WidgetID.WidgetInfo MINIMAP_XP_ORB
-
STRONGHOLD_PROMPT
public static final WidgetID.WidgetInfo STRONGHOLD_PROMPT
-
WILDERNESS_PROMPT
public static final WidgetID.WidgetInfo WILDERNESS_PROMPT
-
DESERT_PROMPT
public static final WidgetID.WidgetInfo DESERT_PROMPT
-
-
Method Detail
-
values
public static WidgetID.WidgetInfo[] 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 (WidgetID.WidgetInfo c : WidgetID.WidgetInfo.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WidgetID.WidgetInfo 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
-
getId
public int getId()
Description copied from interface:WidgetInfo
Gets the ID of the group-child pairing.- Specified by:
getId
in interfaceWidgetInfo
- Returns:
- the ID
-
getGroupId
public int getGroupId()
- Specified by:
getGroupId
in interfaceWidgetInfo
-
getChildId
public int getChildId()
- Specified by:
getChildId
in interfaceWidgetInfo
-
-