public static enum CacheStatistics.Stat extends Enum<CacheStatistics.Stat>
Enum Constant and Description |
---|
CACHE_HITS_FS |
CACHE_HITS_FSBUFF |
CACHE_HITS_HDFS |
CACHE_HITS_MEM |
CACHE_TIME_ACQM |
CACHE_TIME_ACQR |
CACHE_TIME_EXP |
CACHE_TIME_RLS |
CACHE_WRITES_FS |
CACHE_WRITES_FSBUFF |
CACHE_WRITES_HDFS |
Modifier and Type | Method and Description |
---|---|
static CacheStatistics.Stat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheStatistics.Stat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheStatistics.Stat CACHE_HITS_MEM
public static final CacheStatistics.Stat CACHE_HITS_FSBUFF
public static final CacheStatistics.Stat CACHE_HITS_FS
public static final CacheStatistics.Stat CACHE_HITS_HDFS
public static final CacheStatistics.Stat CACHE_WRITES_FSBUFF
public static final CacheStatistics.Stat CACHE_WRITES_FS
public static final CacheStatistics.Stat CACHE_WRITES_HDFS
public static final CacheStatistics.Stat CACHE_TIME_ACQR
public static final CacheStatistics.Stat CACHE_TIME_ACQM
public static final CacheStatistics.Stat CACHE_TIME_RLS
public static final CacheStatistics.Stat CACHE_TIME_EXP
public static CacheStatistics.Stat[] values()
for (CacheStatistics.Stat c : CacheStatistics.Stat.values()) System.out.println(c);
public static CacheStatistics.Stat 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 © 2020 The Apache Software Foundation. All rights reserved.