Enum Class DataSizeUnit

java.lang.Object
java.lang.Enum<DataSizeUnit>
io.dropwizard.util.DataSizeUnit
All Implemented Interfaces:
Serializable, Comparable<DataSizeUnit>, Constable

public enum DataSizeUnit extends Enum<DataSizeUnit>
A unit of information using SI and IEC prefixes.
Since:
2.0
See Also:
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Bytes (8 bits).
    Gibibytes (1024 mebibytes).
    Gigabytes (1000 megabytes).
    Kibibytes (1024 bytes).
    Kilobytes (1000 bytes).
    Mebibytes (1024 kibibytes).
    Megabytes (1000 kilobytes).
    Pebibytes (1024 tebibytes).
    Petabytes (1000 terabytes).
    Tebibytes (1024 gibibytes).
    Terabytes (1000 gigabytes).
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    convert(long size, DataSizeUnit unit)
    Converts a size of the given unit into the current unit.
    long
    toBytes(long l)
    Converts the given number of the current units into bytes.
    long
    toGibibytes(long l)
    Converts the given number of the current units into gibibytes.
    long
    toGigabytes(long l)
    Converts the given number of the current units into gigabytes.
    long
    toKibibytes(long l)
    Converts the given number of the current units into kibibytes.
    long
    toKilobytes(long l)
    Converts the given number of the current units into kilobytes.
    long
    toMebibytes(long l)
    Converts the given number of the current units into mebibytes.
    long
    toMegabytes(long l)
    Converts the given number of the current units into megabytes.
    long
    toPebibytes(long l)
    Converts the given number of the current units into pebibytes.
    long
    toPetabytes(long l)
    Converts the given number of the current units into petabytes.
    long
    toTebibytes(long l)
    Converts the given number of the current units into tebibytes.
    long
    toTerabytes(long l)
    Converts the given number of the current units into terabytes.
    Returns the enum constant of this class with the specified name.
    static DataSizeUnit[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • BYTES

      public static final DataSizeUnit BYTES
      Bytes (8 bits).
    • KILOBYTES

      public static final DataSizeUnit KILOBYTES
      Kilobytes (1000 bytes).
      See Also:
    • MEGABYTES

      public static final DataSizeUnit MEGABYTES
      Megabytes (1000 kilobytes).
      See Also:
    • GIGABYTES

      public static final DataSizeUnit GIGABYTES
      Gigabytes (1000 megabytes).
      See Also:
    • TERABYTES

      public static final DataSizeUnit TERABYTES
      Terabytes (1000 gigabytes).
      See Also:
    • PETABYTES

      public static final DataSizeUnit PETABYTES
      Petabytes (1000 terabytes).
      See Also:
    • KIBIBYTES

      public static final DataSizeUnit KIBIBYTES
      Kibibytes (1024 bytes).
      See Also:
    • MEBIBYTES

      public static final DataSizeUnit MEBIBYTES
      Mebibytes (1024 kibibytes).
      See Also:
    • GIBIBYTES

      public static final DataSizeUnit GIBIBYTES
      Gibibytes (1024 mebibytes).
      See Also:
    • TEBIBYTES

      public static final DataSizeUnit TEBIBYTES
      Tebibytes (1024 gibibytes).
      See Also:
    • PEBIBYTES

      public static final DataSizeUnit PEBIBYTES
      Pebibytes (1024 tebibytes).
      See Also:
  • Method Details

    • values

      public static DataSizeUnit[] 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 DataSizeUnit 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
    • convert

      public long convert(long size, DataSizeUnit unit)
      Converts a size of the given unit into the current unit.
      Parameters:
      size - the magnitude of the size
      unit - the unit of the size
      Returns:
      the given size in the current unit.
    • toBytes

      public long toBytes(long l)
      Converts the given number of the current units into bytes.
      Parameters:
      l - the magnitude of the size in the current unit
      Returns:
      l of the current units in bytes
    • toKilobytes

      public long toKilobytes(long l)
      Converts the given number of the current units into kilobytes.
      Parameters:
      l - the magnitude of the size in the current unit
      Returns:
      l of the current units in kilobytes
    • toMegabytes

      public long toMegabytes(long l)
      Converts the given number of the current units into megabytes.
      Parameters:
      l - the magnitude of the size in the current unit
      Returns:
      l of the current units in megabytes
    • toGigabytes

      public long toGigabytes(long l)
      Converts the given number of the current units into gigabytes.
      Parameters:
      l - the magnitude of the size in the current unit
      Returns:
      l of the current units in gigabytes
    • toTerabytes

      public long toTerabytes(long l)
      Converts the given number of the current units into terabytes.
      Parameters:
      l - the magnitude of the size in the current unit
      Returns:
      l of the current units in terabytes
    • toPetabytes

      public long toPetabytes(long l)
      Converts the given number of the current units into petabytes.
      Parameters:
      l - the magnitude of the size in the current unit
      Returns:
      l of the current units in petabytes
    • toKibibytes

      public long toKibibytes(long l)
      Converts the given number of the current units into kibibytes.
      Parameters:
      l - the magnitude of the size in the current unit
      Returns:
      l of the current units in kibibytes
    • toMebibytes

      public long toMebibytes(long l)
      Converts the given number of the current units into mebibytes.
      Parameters:
      l - the magnitude of the size in the current unit
      Returns:
      l of the current units in mebibytes
    • toGibibytes

      public long toGibibytes(long l)
      Converts the given number of the current units into gibibytes.
      Parameters:
      l - the magnitude of the size in the current unit
      Returns:
      l of the current units in gibibytes
    • toTebibytes

      public long toTebibytes(long l)
      Converts the given number of the current units into tebibytes.
      Parameters:
      l - the magnitude of the size in the current unit
      Returns:
      l of the current units in tebibytes
    • toPebibytes

      public long toPebibytes(long l)
      Converts the given number of the current units into pebibytes.
      Parameters:
      l - the magnitude of the size in the current unit
      Returns:
      l of the current units in pebibytes