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