Enum TelemetricItem
- java.lang.Object
-
- java.lang.Enum<TelemetricItem>
-
- org.rspeer.game.service.telemetry.TelemetricItem
-
- All Implemented Interfaces:
Serializable,Comparable<TelemetricItem>
@Deprecated public enum TelemetricItem extends Enum<TelemetricItem>
Deprecated.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLOWPIPE_DARTSDeprecated.BLOWPIPE_SCALESDeprecated.IBANSDeprecated.RING_OF_ENDURANCEDeprecated.RING_OF_SUFFERINGDeprecated.SANGUINESTI_STAFFDeprecated.SERPENTINE_HELMDeprecated.TOXIC_TRIDENTDeprecated.TOXIC_TRIDENT_EXTENDEDDeprecated.TRIDENTDeprecated.TRIDENT_EXTENDEDDeprecated.WARPED_SCEPTREDeprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description intgetRechargeThreshold()Deprecated.voidresetThreshold()Deprecated.voidsetRechargeThreshold(IntSupplier rechargeThreshold)Deprecated.Scripts should call this to change the default recharge threshold.static TelemetricItemvalueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static TelemetricItem[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BLOWPIPE_DARTS
public static final TelemetricItem BLOWPIPE_DARTS
Deprecated.
-
BLOWPIPE_SCALES
public static final TelemetricItem BLOWPIPE_SCALES
Deprecated.
-
IBANS
public static final TelemetricItem IBANS
Deprecated.
-
WARPED_SCEPTRE
public static final TelemetricItem WARPED_SCEPTRE
Deprecated.
-
TRIDENT_EXTENDED
public static final TelemetricItem TRIDENT_EXTENDED
Deprecated.
-
TOXIC_TRIDENT
public static final TelemetricItem TOXIC_TRIDENT
Deprecated.
-
TOXIC_TRIDENT_EXTENDED
public static final TelemetricItem TOXIC_TRIDENT_EXTENDED
Deprecated.
-
TRIDENT
public static final TelemetricItem TRIDENT
Deprecated.
-
SANGUINESTI_STAFF
public static final TelemetricItem SANGUINESTI_STAFF
Deprecated.
-
RING_OF_SUFFERING
public static final TelemetricItem RING_OF_SUFFERING
Deprecated.
-
RING_OF_ENDURANCE
public static final TelemetricItem RING_OF_ENDURANCE
Deprecated.
-
SERPENTINE_HELM
public static final TelemetricItem SERPENTINE_HELM
Deprecated.
-
-
Method Detail
-
values
public static TelemetricItem[] values()
Deprecated.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 (TelemetricItem c : TelemetricItem.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TelemetricItem valueOf(String name)
Deprecated.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
-
getRechargeThreshold
public int getRechargeThreshold()
Deprecated.
-
setRechargeThreshold
public void setRechargeThreshold(IntSupplier rechargeThreshold)
Deprecated.Scripts should call this to change the default recharge threshold. For example in GWD while im at the boss, I prefer to keep the threshold lower (50-100 darts). but when I'm at the bank or restocking, I'll set it at 300-500 so I can recharge it before leaving for GWD.
-
resetThreshold
public void resetThreshold()
Deprecated.
-
-