Package org.openjdk.jmc.common.unit
Enum BinaryPrefix
- java.lang.Object
-
- java.lang.Enum<BinaryPrefix>
-
- org.openjdk.jmc.common.unit.BinaryPrefix
-
- All Implemented Interfaces:
Serializable,Comparable<BinaryPrefix>,IPrefix<BinaryPrefix>
public enum BinaryPrefix extends Enum<BinaryPrefix> implements IPrefix<BinaryPrefix>
Binary prefixes, as standardized by IEC. The corresponding SI prefixes are also provided to reflect common usage. (JEDEC defines these to be used for powers of 1024 as well, except that they too capitalize "k".) Extend functionality as needed, perhaps likeTimeUnit.
-
-
Field Summary
Fields Modifier and Type Field Description StringenglishNameStringlocalizedNameDecimalPrefixprefixSIDeprecated.Accept that kilobytes and kibibytes are different units.StringsymbolIECStringsymbolJEDECStringsymbolSI
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringaltSymbol()An alternative symbol.StringBuilderasExponentialStringBuilder(boolean multiplicationSign)doubleconvertTo(double value)floatconvertTo(float value)longconvertTo(long value)LinearKindOfQuantity.LinearUnitSelectorcreateUnitSelector(LinearKindOfQuantity kindOfQuantity, Iterable<BinaryPrefix> prefixes)static intgetAlignmentLog1024(double value)The base 1024 logarithm of the binary alignment ofvalue.static intgetAlignmentLog1024(long value)The base 1024 logarithm of the binary alignment ofvalue.static intgetAlignmentLog2(double value)The base 2 logarithm of the binary alignment ofvalue.static intgetAlignmentLog2(long value)The base 2 logarithm of the binary alignment ofvalue.static intgetFloorLog1024(double value)The base 1024 logarithm.static intgetFloorLog1024(long value)The base 1024 logarithm.static intgetFloorLog2(double value)The base 2 logarithm.static intgetFloorLog2(long value)The base 2 logarithm.static BinaryPrefixgetFloorPrefix(double value)static BinaryPrefixgetFloorPrefix(long value)Stringidentifier()StringlocalizedName()intlog1024()BinaryScaleFactorscaleFactor()intshift()Stringsymbol()BinaryScaleFactorvalueFactorTo(BinaryPrefix targetPrefix)static BinaryPrefixvalueOf(String name)Returns the enum constant of this type with the specified name.static BinaryPrefix[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOBI
public static final BinaryPrefix NOBI
-
KIBI
public static final BinaryPrefix KIBI
-
MEBI
public static final BinaryPrefix MEBI
-
GIBI
public static final BinaryPrefix GIBI
-
TEBI
public static final BinaryPrefix TEBI
-
PEBI
public static final BinaryPrefix PEBI
-
EXBI
public static final BinaryPrefix EXBI
-
ZEBI
public static final BinaryPrefix ZEBI
-
YOBI
public static final BinaryPrefix YOBI
-
-
Field Detail
-
prefixSI
@Deprecated public final DecimalPrefix prefixSI
Deprecated.Accept that kilobytes and kibibytes are different units.Temporary reference to the corresponding decimal prefix to get the full name, only to be used during the transition phase where JMC hasn't been completely converted to use quantities. Do not rely on this.
-
symbolSI
public final String symbolSI
-
symbolJEDEC
public final String symbolJEDEC
-
symbolIEC
public final String symbolIEC
-
englishName
public final String englishName
-
localizedName
public final String localizedName
-
-
Method Detail
-
values
public static BinaryPrefix[] 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 (BinaryPrefix c : BinaryPrefix.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BinaryPrefix 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
-
shift
public int shift()
-
log1024
public int log1024()
-
convertTo
public long convertTo(long value)
-
convertTo
public float convertTo(float value)
-
convertTo
public double convertTo(double value)
-
getFloorLog2
public static int getFloorLog2(long value)
The base 2 logarithm. Note that for the value 0, 0 is returned in order to be consistent withMath.floor(double).- Returns:
- the floor of the base 2 logarithm of the absolute value of
value
-
getFloorLog1024
public static int getFloorLog1024(long value)
The base 1024 logarithm. Note that for the value 0, 0 is returned in order to be consistent withMath.floor(double).- Returns:
- the floor of the base 1024 logarithm of the absolute value of
value
-
getFloorPrefix
public static BinaryPrefix getFloorPrefix(long value)
-
getAlignmentLog2
public static int getAlignmentLog2(long value)
The base 2 logarithm of the binary alignment ofvalue. Note that for the value 0, the return value is undefined.- Returns:
- the base 2 logarithm of the alignment of
value
-
getAlignmentLog1024
public static int getAlignmentLog1024(long value)
The base 1024 logarithm of the binary alignment ofvalue. Note that for the value 0, the return value is undefined.- Returns:
- the base 1024 logarithm of the alignment of
value
-
getFloorLog2
public static int getFloorLog2(double value)
The base 2 logarithm. Note that for the value 0, 0 is returned, in order to be consistent withMath.floor(double).- Returns:
- the floor of the base 2 logarithm of the absolute value of
value
-
getFloorLog1024
public static int getFloorLog1024(double value)
The base 1024 logarithm. Note that for the value 0, 0 is returned in order to be consistent withMath.floor(double).- Returns:
- the floor of the base 1024 logarithm of the absolute value of
value
-
getFloorPrefix
public static BinaryPrefix getFloorPrefix(double value)
-
getAlignmentLog2
public static int getAlignmentLog2(double value)
The base 2 logarithm of the binary alignment ofvalue. Note that for zero, infinity, NaN, and denormalized values, the return value is currently undefined.- Returns:
- the base 2 logarithm of the alignment of
value
-
getAlignmentLog1024
public static int getAlignmentLog1024(double value)
The base 1024 logarithm of the binary alignment ofvalue. Note that for zero, infinity, NaN, and denormalized values, the return value is currently undefined.- Returns:
- the base 1024 logarithm of the alignment of
value
-
identifier
public String identifier()
- Specified by:
identifierin interfaceIPrefix<BinaryPrefix>- Returns:
- identifier usable for constructing persistable identifiers for units.
-
symbol
public String symbol()
- Specified by:
symbolin interfaceIPrefix<BinaryPrefix>- Returns:
- the symbol normally used to present this prefix in a GUI.
-
altSymbol
public String altSymbol()
Description copied from interface:IPrefixAn alternative symbol. Intended to be used for interactive parsing where entering the micron character may be cumbersome, or catching typing of MB when intending MiB. (These are very different cases, and should ideally not be handled by the same mechanism. However, a single mechanism seems to work right now.)- Specified by:
altSymbolin interfaceIPrefix<BinaryPrefix>- Returns:
- alternative symbol, or
nullif no other representation is available
-
localizedName
public String localizedName()
- Specified by:
localizedNamein interfaceIPrefix<BinaryPrefix>
-
asExponentialStringBuilder
public StringBuilder asExponentialStringBuilder(boolean multiplicationSign)
- Specified by:
asExponentialStringBuilderin interfaceIPrefix<BinaryPrefix>
-
scaleFactor
public BinaryScaleFactor scaleFactor()
- Specified by:
scaleFactorin interfaceIPrefix<BinaryPrefix>
-
valueFactorTo
public BinaryScaleFactor valueFactorTo(BinaryPrefix targetPrefix)
- Specified by:
valueFactorToin interfaceIPrefix<BinaryPrefix>
-
createUnitSelector
public LinearKindOfQuantity.LinearUnitSelector createUnitSelector(LinearKindOfQuantity kindOfQuantity, Iterable<BinaryPrefix> prefixes)
- Specified by:
createUnitSelectorin interfaceIPrefix<BinaryPrefix>
-
-