Package de.caluga.morphium
Enum StatisticKeys
- java.lang.Object
-
- java.lang.Enum<StatisticKeys>
-
- de.caluga.morphium.StatisticKeys
-
- All Implemented Interfaces:
Serializable,Comparable<StatisticKeys>
public enum StatisticKeys extends Enum<StatisticKeys>
User: Stephan Bösebeck Date: 05.07.12 Time: 13:21
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CACHE_ENTRIESCHITSCHITSPERCCMISSCMISSPERCNO_CACHED_READSPULLPULLSKIPREADSREGISTERED_LOGGERSSKIPPED_MSG_UPDATESWRITE_BUFFER_ENTRIESWRITESWRITES_CACHED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StatisticKeysvalueOf(String name)Returns the enum constant of this type with the specified name.static StatisticKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WRITES
public static final StatisticKeys WRITES
-
WRITES_CACHED
public static final StatisticKeys WRITES_CACHED
-
READS
public static final StatisticKeys READS
-
CHITS
public static final StatisticKeys CHITS
-
CMISS
public static final StatisticKeys CMISS
-
NO_CACHED_READS
public static final StatisticKeys NO_CACHED_READS
-
CHITSPERC
public static final StatisticKeys CHITSPERC
-
CMISSPERC
public static final StatisticKeys CMISSPERC
-
CACHE_ENTRIES
public static final StatisticKeys CACHE_ENTRIES
-
REGISTERED_LOGGERS
public static final StatisticKeys REGISTERED_LOGGERS
-
WRITE_BUFFER_ENTRIES
public static final StatisticKeys WRITE_BUFFER_ENTRIES
-
PULL
public static final StatisticKeys PULL
-
PULLSKIP
public static final StatisticKeys PULLSKIP
-
SKIPPED_MSG_UPDATES
public static final StatisticKeys SKIPPED_MSG_UPDATES
-
-
Method Detail
-
values
public static StatisticKeys[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StatisticKeys c : StatisticKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StatisticKeys valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-