Package org.rspeer.game.component.tdi
Enum Settings.Option
- java.lang.Object
-
- java.lang.Enum<Settings.Option>
-
- org.rspeer.game.component.tdi.Settings.Option
-
- All Implemented Interfaces:
Serializable
,Comparable<Settings.Option>
- Enclosing class:
- Settings
public static enum Settings.Option extends Enum<Settings.Option>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Settings.Option.Type
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getEnabledValue()
int
getTab()
String
getText()
Settings.Option.Type
getType()
static Settings.Option
valueOf(String name)
Returns the enum constant of this type with the specified name.static Settings.Option[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HITSPLAT_TINTING
public static final Settings.Option HITSPLAT_TINTING
-
MAX_HIT_HITSPLATS
public static final Settings.Option MAX_HIT_HITSPLATS
-
MAX_HIT_HITSPLATS_THRESHOLD
public static final Settings.Option MAX_HIT_HITSPLATS_THRESHOLD
-
BOSS_HEALTH_OVERLAY
public static final Settings.Option BOSS_HEALTH_OVERLAY
-
TARGET_NAME_ON_HEALTH_OVERLAY
public static final Settings.Option TARGET_NAME_ON_HEALTH_OVERLAY
-
HEALTH_OVERLAY_DISPLAY_TYPE
public static final Settings.Option HEALTH_OVERLAY_DISPLAY_TYPE
-
COMPACT_BOSS_HEALTH_OVERLAY
public static final Settings.Option COMPACT_BOSS_HEALTH_OVERLAY
-
LMS_FOG_COLOR
public static final Settings.Option LMS_FOG_COLOR
-
DEEP_WILDERNESS_DEFAULT_OPTION
public static final Settings.Option DEEP_WILDERNESS_DEFAULT_OPTION
-
MAKE_X_DARTS
public static final Settings.Option MAKE_X_DARTS
-
EQUIP_LOOTED_AMMO
public static final Settings.Option EQUIP_LOOTED_AMMO
-
STORE_LOOTED_RUNES
public static final Settings.Option STORE_LOOTED_RUNES
-
ACCEPT_TRADE_DELAY
public static final Settings.Option ACCEPT_TRADE_DELAY
-
DISABLE_LEVEL_UP_INTERFACE
public static final Settings.Option DISABLE_LEVEL_UP_INTERFACE
-
WORLD_SWITCHER_CONFIRMATION
public static final Settings.Option WORLD_SWITCHER_CONFIRMATION
-
CHARTER_SHIPS_CONFIRMATION
public static final Settings.Option CHARTER_SHIPS_CONFIRMATION
-
FARMING_PAYMENT_CONFIRMATION
public static final Settings.Option FARMING_PAYMENT_CONFIRMATION
-
GRAVESTONE_PAYMENT_CONFIRMATION
public static final Settings.Option GRAVESTONE_PAYMENT_CONFIRMATION
-
STOCKMARKET_SELL_CONFIRMATION
public static final Settings.Option STOCKMARKET_SELL_CONFIRMATION
-
STOCKMARKET_BUY_CONFIRMATION
public static final Settings.Option STOCKMARKET_BUY_CONFIRMATION
-
ALCHEMY_MINIMUM_VALUE_WARNING
public static final Settings.Option ALCHEMY_MINIMUM_VALUE_WARNING
-
FEROX_ENCLAVE_WARNING
public static final Settings.Option FEROX_ENCLAVE_WARNING
-
FORM_SUPPLY_PILES
public static final Settings.Option FORM_SUPPLY_PILES
-
ACCEPT_AID
public static final Settings.Option ACCEPT_AID
-
STORE_ALL_LOOTING_BAG
public static final Settings.Option STORE_ALL_LOOTING_BAG
-
IGNORE_SUPPLIES_LOOTING_BAG
public static final Settings.Option IGNORE_SUPPLIES_LOOTING_BAG
-
EMPTY_RUNE_POUCH_ON_DEATH
public static final Settings.Option EMPTY_RUNE_POUCH_ON_DEATH
-
EMPTY_ESSENCE_POUCH_ON_DEATH
public static final Settings.Option EMPTY_ESSENCE_POUCH_ON_DEATH
-
ITEM_RETRIEVAL_SERVICE_WARNING
public static final Settings.Option ITEM_RETRIEVAL_SERVICE_WARNING
-
POPOUT_PANEL
public static final Settings.Option POPOUT_PANEL
-
-
Method Detail
-
values
public static Settings.Option[] 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 (Settings.Option c : Settings.Option.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Settings.Option valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getText
public String getText()
-
getTab
public int getTab()
-
getEnabledValue
public int getEnabledValue()
-
getType
public Settings.Option.Type getType()
-
-