Class Stat
- java.lang.Object
-
- net.runelite.client.plugins.itemstats.stats.Stat
-
- Direct Known Subclasses:
EnergyStat
,SkillStat
public abstract class Stat extends java.lang.Object
Abstract stat of a player. This includesSkill
s and other player variables, such asRUN_ENERGY
.- See Also:
Stats
-
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract int
getMaximum(net.runelite.api.Client client)
Get the base stat maximum.java.lang.String
getName()
abstract int
getValue(net.runelite.api.Client client)
Get the current stat value including any boosts or damage.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
-
getValue
public abstract int getValue(net.runelite.api.Client client)
Get the current stat value including any boosts or damage.
-
getMaximum
public abstract int getMaximum(net.runelite.api.Client client)
Get the base stat maximum. (ie. the bottom half of the stat fraction)
-
-