Interface IProcessingStatistic
-
- All Known Implementing Classes:
ProcessingStatistic
public interface IProcessingStatisticThe processing statistic
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Doubleget(java.lang.String key)Gets the statistic valuebooleanisEmpty()Check if the statistic if emptyjava.util.Set<java.lang.String>keySet()Returns the statistic key set
-
-
-
Method Detail
-
keySet
java.util.Set<java.lang.String> keySet()
Returns the statistic key set- Returns:
- the key set
-
get
java.lang.Double get(java.lang.String key)
Gets the statistic value- Parameters:
key- the statistic key- Returns:
- the value if it was set; otherwise null
-
isEmpty
boolean isEmpty()
Check if the statistic if empty- Returns:
- true if it is empty
-
-