Class SkillBoostEvent
- java.lang.Object
-
- net.eternalclient.api.listeners.skill.SkillBoostEvent
-
public final class SkillBoostEvent extends java.lang.Object
Represents an event triggered when a skill's level is boosted.
-
-
Constructor Summary
Constructors Constructor Description SkillBoostEvent(Skill skill, int previous, int current, int difference)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
getCurrent()
int
getDifference()
int
getPrevious()
Skill
getSkill()
int
hashCode()
java.lang.String
toString()
-
-
-
Constructor Detail
-
SkillBoostEvent
public SkillBoostEvent(Skill skill, int previous, int current, int difference)
-
-
Method Detail
-
getSkill
public Skill getSkill()
-
getPrevious
public int getPrevious()
-
getCurrent
public int getCurrent()
-
getDifference
public int getDifference()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-