VMware GemFire Java API Reference
Package org.apache.geode.admin
Interface Statistic
-
- All Superinterfaces:
java.io.Serializable
@Deprecated public interface Statistic extends java.io.SerializableDeprecated.as of 7.0 use themanagementpackage insteadInterface to represent a single statistic of aStatisticResource- Since:
- GemFire 3.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetDescription()Deprecated.Gets the full description of this statistic.java.lang.StringgetName()Deprecated.Gets the identifying name of this statistic.java.lang.StringgetUnits()Deprecated.Gets the unit of measurement (if any) this statistic represents.java.lang.NumbergetValue()Deprecated.Gets the value of this statistic as ajava.lang.Number.booleanisCounter()Deprecated.Returns true if this statistic represents a numeric value which always increases.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Deprecated.Gets the identifying name of this statistic.- Returns:
- the identifying name of this statistic
-
getValue
java.lang.Number getValue()
Deprecated.Gets the value of this statistic as ajava.lang.Number.- Returns:
- the value of this statistic
-
getUnits
java.lang.String getUnits()
Deprecated.Gets the unit of measurement (if any) this statistic represents.- Returns:
- the unit of measurement (if any) this statistic represents
-
isCounter
boolean isCounter()
Deprecated.Returns true if this statistic represents a numeric value which always increases.- Returns:
- true if this statistic represents a value which always increases
-
getDescription
java.lang.String getDescription()
Deprecated.Gets the full description of this statistic.- Returns:
- the full description of this statistic
-
-