Enum Class Content

java.lang.Object
java.lang.Enum<Content>
org.apache.hadoop.hdfs.server.namenode.Content
All Implemented Interfaces:
Serializable, Comparable<Content>, Constable

public enum Content extends Enum<Content>
The content types such as file, directory and symlink to be computed.
  • Enum Constant Details

    • FILE

      public static final Content FILE
      The number of files.
    • DIRECTORY

      public static final Content DIRECTORY
      The number of directories.
    • LENGTH

      public static final Content LENGTH
      The total of file length in bytes.
    • DISKSPACE

      public static final Content DISKSPACE
      The total of disk space usage in bytes including replication.
    • SNAPSHOT

      public static final Content SNAPSHOT
      The number of snapshots.
    • SNAPSHOTTABLE_DIRECTORY

      public static final Content SNAPSHOTTABLE_DIRECTORY
      The number of snapshottable directories.
  • Method Details

    • values

      public static Content[] 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

      public static Content valueOf(String name)
      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 name
      NullPointerException - if the argument is null