@InterfaceAudience.Private public enum FileSystemCounter extends Enum<FileSystemCounter>
Enum Constant and Description |
---|
BYTES_READ |
BYTES_WRITTEN |
LARGE_READ_OPS |
READ_OPS |
WRITE_OPS |
Modifier and Type | Method and Description |
---|---|
static FileSystemCounter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileSystemCounter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileSystemCounter BYTES_READ
public static final FileSystemCounter BYTES_WRITTEN
public static final FileSystemCounter READ_OPS
public static final FileSystemCounter LARGE_READ_OPS
public static final FileSystemCounter WRITE_OPS
public static FileSystemCounter[] values()
for (FileSystemCounter c : FileSystemCounter.values()) System.out.println(c);
public static FileSystemCounter 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 © 2016 Apache Software Foundation. All Rights Reserved.