|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Content>
org.apache.hadoop.hdfs.server.namenode.Content
public enum Content
The content types such as file, directory and symlink to be computed.
Nested Class Summary | |
---|---|
static class |
Content.Counts
Content counts. |
static class |
Content.CountsMap
A map of counters for the current state and the snapshots. |
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Content FILE
public static final Content DIRECTORY
public static final Content SYMLINK
public static final Content LENGTH
public static final Content DISKSPACE
public static final Content SNAPSHOT
public static final Content SNAPSHOTTABLE_DIRECTORY
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |