Enum Class SizeUnit

java.lang.Object
java.lang.Enum<SizeUnit>
com.github.joschi.jadconfig.util.SizeUnit
All Implemented Interfaces:
Serializable, Comparable<SizeUnit>, Constable

public enum SizeUnit extends Enum<SizeUnit>
A unit of size.
  • Enum Constant Details

    • BYTES

      public static final SizeUnit BYTES
      Bytes.
    • KILOBYTES

      public static final SizeUnit KILOBYTES
      Kilobytes.
    • MEGABYTES

      public static final SizeUnit MEGABYTES
      Megabytes.
    • GIGABYTES

      public static final SizeUnit GIGABYTES
      Gigabytes.
    • TERABYTES

      public static final SizeUnit TERABYTES
      Terabytes.
    • PETABYTES

      public static final SizeUnit PETABYTES
      Petabytes.
  • Method Details

    • values

      public static SizeUnit[] 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 SizeUnit 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, SizeUnit 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 bytes
    • 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 terabytes