public enum CacheMetricsKeys extends Enum<CacheMetricsKeys>
Enum Constant and Description |
---|
GET_TIME |
HITS |
LOAD_TIME |
MISSES |
PUT_TIME |
Modifier and Type | Method and Description |
---|---|
String |
key() |
static CacheMetricsKeys |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheMetricsKeys[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheMetricsKeys HITS
public static final CacheMetricsKeys MISSES
public static final CacheMetricsKeys LOAD_TIME
public static final CacheMetricsKeys PUT_TIME
public static final CacheMetricsKeys GET_TIME
public static CacheMetricsKeys[] values()
for (CacheMetricsKeys c : CacheMetricsKeys.values()) System.out.println(c);
public static CacheMetricsKeys 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 nullpublic String key()
Copyright © 2002-2024 Atlassian. All Rights Reserved.