Enum MemoryUnit

java.lang.Object
java.lang.Enum<MemoryUnit>
org.infinispan.commons.util.MemoryUnit
All Implemented Interfaces:
Serializable, Comparable<MemoryUnit>

@Deprecated public enum MemoryUnit extends Enum<MemoryUnit>
Deprecated.
since 11.0, use ByteQuantity instead.
  • Enum Constant Details

    • BYTES

      public static final MemoryUnit BYTES
      Deprecated.
    • KILOBYTES

      public static final MemoryUnit KILOBYTES
      Deprecated.
    • KIBIBYTES

      public static final MemoryUnit KIBIBYTES
      Deprecated.
    • MEGABYTES

      public static final MemoryUnit MEGABYTES
      Deprecated.
    • MEBIBYTES

      public static final MemoryUnit MEBIBYTES
      Deprecated.
    • GIGABYTES

      public static final MemoryUnit GIGABYTES
      Deprecated.
    • GIBIBYTES

      public static final MemoryUnit GIBIBYTES
      Deprecated.
    • TERABYTES

      public static final MemoryUnit TERABYTES
      Deprecated.
    • TEBIBYTES

      public static final MemoryUnit TEBIBYTES
      Deprecated.
  • Method Details

    • values

      public static MemoryUnit[] values()
      Deprecated.
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static MemoryUnit valueOf(String name)
      Deprecated.
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • getSuffix

      public String getSuffix()
      Deprecated.
    • convert

      public long convert(long sourceSize, MemoryUnit sourceUnit)
      Deprecated.
    • toBytes

      public long toBytes(long size)
      Deprecated.
    • toKiloBytes

      public long toKiloBytes(long size)
      Deprecated.
    • toKibiBytes

      public long toKibiBytes(long size)
      Deprecated.
    • toMegaBytes

      public long toMegaBytes(long size)
      Deprecated.
    • toMebiBytes

      public long toMebiBytes(long size)
      Deprecated.
    • toGigaBytes

      public long toGigaBytes(long size)
      Deprecated.
    • toGibiBytes

      public long toGibiBytes(long size)
      Deprecated.
    • toTeraBytes

      public long toTeraBytes(long size)
      Deprecated.
    • toTebiBytes

      public long toTebiBytes(long size)
      Deprecated.
    • parseBytes

      public static long parseBytes(String s)
      Deprecated.