Enum Class DataUnit

java.lang.Object
java.lang.Enum<DataUnit>
org.springframework.util.unit.DataUnit
All Implemented Interfaces:
Serializable, Comparable<DataUnit>, Constable

public enum DataUnit extends Enum<DataUnit>
A standard set of DataSize units.

The unit prefixes used in this class are binary prefixes indicating multiplication by powers of 2. The following table displays the enum constants defined in this class and corresponding values.

ConstantData SizePower of 2Size in Bytes
BYTES1B2^01
KILOBYTES1KB2^101,024
MEGABYTES1MB2^201,048,576
GIGABYTES1GB2^301,073,741,824
TERABYTES1TB2^401,099,511,627,776
Since:
5.1
Author:
Stephane Nicoll, Sam Brannen
See Also:
  • Enum Constant Details

    • BYTES

      public static final DataUnit BYTES
      Bytes, represented by suffix B.
    • KILOBYTES

      public static final DataUnit KILOBYTES
      Kilobytes, represented by suffix KB.
    • MEGABYTES

      public static final DataUnit MEGABYTES
      Megabytes, represented by suffix MB.
    • GIGABYTES

      public static final DataUnit GIGABYTES
      Gigabytes, represented by suffix GB.
    • TERABYTES

      public static final DataUnit TERABYTES
      Terabytes, represented by suffix TB.
  • Method Details

    • values

      public static DataUnit[] 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 DataUnit 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
    • fromSuffix

      public static DataUnit fromSuffix(String suffix)
      Return the DataUnit matching the specified suffix.
      Parameters:
      suffix - one of the standard suffixes
      Returns:
      the DataUnit matching the specified suffix
      Throws:
      IllegalArgumentException - if the suffix does not match the suffix of any of this enum's constants