public enum Content extends Enum<Content>
Modifier and Type | Class and Description |
---|---|
static class |
Content.Counts
Content counts.
|
static class |
Content.CountsMap
A map of counters for the current state and the snapshots.
|
Enum Constant and Description |
---|
DIRECTORY
The number of directories.
|
DISKSPACE
The total of disk space usage in bytes including replication.
|
FILE
The number of files.
|
LENGTH
The total of file length in bytes.
|
SNAPSHOT
The number of snapshots.
|
SNAPSHOTTABLE_DIRECTORY
The number of snapshottable directories.
|
SYMLINK
The number of symlinks.
|
Modifier and Type | Method and Description |
---|---|
static Content |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Content[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Content DISKSPACE
public static final Content SNAPSHOTTABLE_DIRECTORY
public static Content[] values()
for (Content c : Content.values()) System.out.println(c);
public static Content 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 © 2017 Apache Software Foundation. All Rights Reserved.