Package io.airlift.units
Enum DataSize.Unit
- java.lang.Object
-
- java.lang.Enum<DataSize.Unit>
-
- io.airlift.units.DataSize.Unit
-
- All Implemented Interfaces:
Serializable,Comparable<DataSize.Unit>
- Enclosing class:
- DataSize
public static enum DataSize.Unit extends Enum<DataSize.Unit>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetUnitString()longinBytes()static DataSize.UnitvalueOf(String name)Returns the enum constant of this type with the specified name.static DataSize.Unit[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BYTE
public static final DataSize.Unit BYTE
-
KILOBYTE
public static final DataSize.Unit KILOBYTE
-
MEGABYTE
public static final DataSize.Unit MEGABYTE
-
GIGABYTE
public static final DataSize.Unit GIGABYTE
-
TERABYTE
public static final DataSize.Unit TERABYTE
-
PETABYTE
public static final DataSize.Unit PETABYTE
-
-
Method Detail
-
values
public static DataSize.Unit[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DataSize.Unit c : DataSize.Unit.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataSize.Unit valueOf(String name)
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 nameNullPointerException- if the argument is null
-
inBytes
public long inBytes()
-
getUnitString
public String getUnitString()
-
-