Package org.springframework.util.unit
Enum Class DataUnit
- All Implemented Interfaces:
Serializable
,Comparable<DataUnit>
,Constable
A standard set of
DataSize
units.
The unit prefixes used in this class are binary prefixes indicating multiplication by powers of 2. The following table displays the enum constants defined in this class and corresponding values.
Constant | Data Size | Power of 2 | Size in Bytes |
---|---|---|---|
BYTES | 1B | 2^0 | 1 |
KILOBYTES | 1KB | 2^10 | 1,024 |
MEGABYTES | 1MB | 2^20 | 1,048,576 |
GIGABYTES | 1GB | 2^30 | 1,073,741,824 |
TERABYTES | 1TB | 2^40 | 1,099,511,627,776 |
- Since:
- 5.1
- Author:
- Stephane Nicoll, Sam Brannen
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic DataUnit
fromSuffix
(String suffix) Return theDataUnit
matching the specifiedsuffix
.static DataUnit
Returns the enum constant of this class with the specified name.static DataUnit[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BYTES
Bytes, represented by suffixB
. -
KILOBYTES
Kilobytes, represented by suffixKB
. -
MEGABYTES
Megabytes, represented by suffixMB
. -
GIGABYTES
Gigabytes, represented by suffixGB
. -
TERABYTES
Terabytes, represented by suffixTB
.
-
-
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
-
fromSuffix
Return theDataUnit
matching the specifiedsuffix
.- Parameters:
suffix
- one of the standard suffixes- Returns:
- the
DataUnit
matching the specifiedsuffix
- Throws:
IllegalArgumentException
- if the suffix does not match the suffix of any of this enum's constants
-