Package org.rspeer.game.component
Enum EffectType
- java.lang.Object
- 
- java.lang.Enum<EffectType>
- 
- org.rspeer.game.component.EffectType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<EffectType>
 
 public enum EffectType extends Enum<EffectType> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ABYSSAL_SIRE_STUNAMMO_REMAININGBOUNDCHARGEDESERT_HEAT_TIMERDFS_SPECGWD_ALTARHOME_TELEPORT_COOLDOWNIMBUED_HEARTMAGIC_IMBUEMINIGAME_TELEPORT_COOLDOWNSHADOW_VEILSOTD_SPECTELEBLOCK
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetIndex()Vars.TypegetVarType()static EffectTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EffectType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
ABYSSAL_SIRE_STUNpublic static final EffectType ABYSSAL_SIRE_STUN 
 - 
BOUNDpublic static final EffectType BOUND 
 - 
SOTD_SPECpublic static final EffectType SOTD_SPEC 
 - 
IMBUED_HEARTpublic static final EffectType IMBUED_HEART 
 - 
DFS_SPECpublic static final EffectType DFS_SPEC 
 - 
CHARGEpublic static final EffectType CHARGE 
 - 
MAGIC_IMBUEpublic static final EffectType MAGIC_IMBUE 
 - 
GWD_ALTARpublic static final EffectType GWD_ALTAR 
 - 
HOME_TELEPORT_COOLDOWNpublic static final EffectType HOME_TELEPORT_COOLDOWN 
 - 
MINIGAME_TELEPORT_COOLDOWNpublic static final EffectType MINIGAME_TELEPORT_COOLDOWN 
 - 
TELEBLOCKpublic static final EffectType TELEBLOCK 
 - 
SHADOW_VEILpublic static final EffectType SHADOW_VEIL 
 - 
AMMO_REMAININGpublic static final EffectType AMMO_REMAINING 
 - 
DESERT_HEAT_TIMERpublic static final EffectType DESERT_HEAT_TIMER 
 
- 
 - 
Method Detail- 
valuespublic static EffectType[] 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 (EffectType c : EffectType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static EffectType 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 name
- NullPointerException- if the argument is null
 
 - 
getIndexpublic int getIndex() 
 - 
getVarTypepublic Vars.Type getVarType() 
 
- 
 
-