Enum Class Quota

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

public enum Quota extends Enum<Quota>
Quota types.
  • Enum Constant Details

    • NAMESPACE

      public static final Quota NAMESPACE
      The namespace usage, i.e. the number of name objects.
    • STORAGESPACE

      public static final Quota STORAGESPACE
      The storage space usage in bytes including replication.
  • Method Details

    • values

      public static Quota[] 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 Quota 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
    • isViolated

      public static boolean isViolated(long quota, long usage)
      Is quota violated? The quota is violated if quota is set and usage > quota.