Package com.github.joschi.jadconfig.util
Enum Class SizeUnit
- All Implemented Interfaces:
Serializable,Comparable<SizeUnit>,Constable
A unit of size.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionlongConverts a size of the given unit into the current unit.longtoBytes(long l) Converts the given number of the current units into bytes.longtoGigabytes(long l) Converts the given number of the current units into gigabytes.longtoKilobytes(long l) Converts the given number of the current units into kilobytes.longtoMegabytes(long l) Converts the given number of the current units into megabytes.longtoPetabytes(long l) Converts the given number of the current units into petabytes.longtoTerabytes(long l) Converts the given number of the current units into terabytes.static SizeUnitReturns the enum constant of this class with the specified name.static SizeUnit[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
BYTES
Bytes. -
KILOBYTES
Kilobytes. -
MEGABYTES
Megabytes. -
GIGABYTES
Gigabytes. -
TERABYTES
Terabytes. -
PETABYTES
Petabytes.
-
-
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 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:
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 terabytes
-