| Enum Constant | 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 | Description |
|---|---|---|
static Content |
valueOf(java.lang.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 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
public static Content[] values()
for (Content c : Content.values()) System.out.println(c);
public static Content valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2008–2025 Apache Software Foundation. All rights reserved.