public static enum CacheStatistics.Capability extends Enum<CacheStatistics.Capability>
| Enum Constant and Description |
|---|
CACHE_MISSES |
| Modifier and Type | Method and Description |
|---|---|
static CacheStatistics.Capability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheStatistics.Capability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheStatistics.Capability CACHE_MISSES
public static CacheStatistics.Capability[] values()
for (CacheStatistics.Capability c : CacheStatistics.Capability.values()) System.out.println(c);
public static CacheStatistics.Capability 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 © 2003–2017 Atlassian. All rights reserved.