VMware GemFire Java API Reference
Package org.apache.geode.admin
Interface Statistic
-
- All Superinterfaces:
Serializable
@Deprecated public interface Statistic extends Serializable
Deprecated.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 StringgetDescription()Deprecated.Gets the full description of this statistic.StringgetName()Deprecated.Gets the identifying name of this statistic.StringgetUnits()Deprecated.Gets the unit of measurement (if any) this statistic represents.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
String getName()
Deprecated.Gets the identifying name of this statistic.- Returns:
- the identifying name of this statistic
-
getValue
Number getValue()
Deprecated.Gets the value of this statistic as ajava.lang.Number.- Returns:
- the value of this statistic
-
getUnits
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
String getDescription()
Deprecated.Gets the full description of this statistic.- Returns:
- the full description of this statistic
-
-