public enum StatisticKeys extends Enum<StatisticKeys>
| Enum Constant and Description |
|---|
CACHE_ENTRIES |
CHITS |
CHITSPERC |
CMISS |
CMISSPERC |
NO_CACHED_READS |
READS |
REGISTERED_LOGGERS |
WRITE_BUFFER_ENTRIES |
WRITES |
WRITES_CACHED |
| Modifier and Type | Method and Description |
|---|---|
static StatisticKeys |
valueOf(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.
|
public static final StatisticKeys WRITES
public static final StatisticKeys WRITES_CACHED
public static final StatisticKeys READS
public static final StatisticKeys CHITS
public static final StatisticKeys CMISS
public static final StatisticKeys NO_CACHED_READS
public static final StatisticKeys CHITSPERC
public static final StatisticKeys CMISSPERC
public static final StatisticKeys CACHE_ENTRIES
public static final StatisticKeys REGISTERED_LOGGERS
public static final StatisticKeys WRITE_BUFFER_ENTRIES
public static StatisticKeys[] values()
for (StatisticKeys c : StatisticKeys.values()) System.out.println(c);
public static StatisticKeys valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.