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 SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Method SummaryModifier and TypeMethodDescriptionstatic DataUnitfromSuffix(String suffix) Return theDataUnitmatching the specifiedsuffix.static DataUnitReturns 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- 
BYTESBytes, represented by suffixB.
- 
KILOBYTESKilobytes, represented by suffixKB.
- 
MEGABYTESMegabytes, represented by suffixMB.
- 
GIGABYTESGigabytes, represented by suffixGB.
- 
TERABYTESTerabytes, represented by suffixTB.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
fromSuffixReturn theDataUnitmatching the specifiedsuffix.- Parameters:
- suffix- one of the standard suffixes
- Returns:
- the DataUnitmatching the specifiedsuffix
- Throws:
- IllegalArgumentException- if the suffix does not match the suffix of any of this enum's constants
 
 
-