Package io.dropwizard.util
Enum Class DataSizeUnit
- All Implemented Interfaces:
Serializable,Comparable<DataSizeUnit>,Constable
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 ConstantsEnum ConstantDescriptionBytes (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 TypeMethodDescriptionlongconvert(long size, DataSizeUnit unit) Converts a size of the given unit into the current unit.longtoBytes(long l) Converts the given number of the current units into bytes.longtoGibibytes(long l) Converts the given number of the current units into gibibytes.longtoGigabytes(long l) Converts the given number of the current units into gigabytes.longtoKibibytes(long l) Converts the given number of the current units into kibibytes.longtoKilobytes(long l) Converts the given number of the current units into kilobytes.longtoMebibytes(long l) Converts the given number of the current units into mebibytes.longtoMegabytes(long l) Converts the given number of the current units into megabytes.longtoPebibytes(long l) Converts the given number of the current units into pebibytes.longtoPetabytes(long l) Converts the given number of the current units into petabytes.longtoTebibytes(long l) Converts the given number of the current units into tebibytes.longtoTerabytes(long l) Converts the given number of the current units into terabytes.static DataSizeUnitReturns the enum constant of this class with the specified name.static DataSizeUnit[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BYTES
Bytes (8 bits). -
KILOBYTES
Kilobytes (1000 bytes).- See Also:
-
MEGABYTES
Megabytes (1000 kilobytes).- See Also:
-
GIGABYTES
Gigabytes (1000 megabytes).- See Also:
-
TERABYTES
Terabytes (1000 gigabytes).- See Also:
-
PETABYTES
Petabytes (1000 terabytes).- See Also:
-
KIBIBYTES
Kibibytes (1024 bytes).- See Also:
-
MEBIBYTES
Mebibytes (1024 kibibytes).- See Also:
-
GIBIBYTES
Gibibytes (1024 mebibytes).- See Also:
-
TEBIBYTES
Tebibytes (1024 gibibytes).- See Also:
-
PEBIBYTES
Pebibytes (1024 tebibytes).- See Also:
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
convert
Converts a size of the given unit into the current unit.- Parameters:
size- the magnitude of the sizeunit- 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:
lof 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:
lof 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:
lof 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:
lof 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:
lof 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:
lof 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:
lof 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:
lof 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:
lof 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:
lof 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:
lof the current units in pebibytes
-