Enum Class Content
- All Implemented Interfaces:
Serializable,Comparable<Content>,Constable
The content types such as file, directory and symlink to be computed.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe number of directories.The total of disk space usage in bytes including replication.The number of files.The total of file length in bytes.The number of snapshots.The number of snapshottable directories.The number of symlinks. -
Method Summary
-
Enum Constant Details
-
FILE
The number of files. -
DIRECTORY
The number of directories. -
SYMLINK
The number of symlinks. -
LENGTH
The total of file length in bytes. -
DISKSPACE
The total of disk space usage in bytes including replication. -
SNAPSHOT
The number of snapshots. -
SNAPSHOTTABLE_DIRECTORY
The number of snapshottable directories.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-