Enum Class Prefix
- All Implemented Interfaces:
- Serializable,- Comparable<Prefix>,- Constable
SI prefixes.
 
From http://en.wikipedia.org/wiki/SI_prefix:
 yotta   Y   1000^8     10^24    1000000000000000000000000   Septillion      Quadrillion     1991
 zetta   Z   1000^7     10^21    1000000000000000000000      Sextillion      Trilliard       1991
 exa     E   1000^6     10^18    1000000000000000000         Quintillion     Trillion        1975
 peta    P   1000^5     10^15    1000000000000000            Quadrillion     Billiard        1975
 tera    T   1000^4     10^12    1000000000000               Trillion        Billion         1960
 giga    G   1000^3     10^9     1000000000                  Billion         Milliard        1960
 mega    M   1000^2     10^6     1000000                     Million                         1960
 kilo    k   1000^1     10^3     1000                        Thousand                        1795
 hecto   h   1000^2/3   10^2     100                         Hundred                         1795
 deca    da  1000^1/3   10^1     10                          Ten                             1795
             1000^0     10^0     1                           One
 deci    d   1000^-1/3  10^-1    0.1                         Tenth                           1795
 centi   c   1000^-2/3  10^-2    0.01                        Hundredth                       1795
 milli   m   1000^-1    10^-3    0.001                       Thousandth                      1795
 micro   my  1000^-2    10^-6    0.000001                    Millionth                       1960
 nano    n   1000^-3    10^-9    0.000000001                 Billionth       Milliardth      1960
 pico    p   1000^-4    10^-12   0.000000000001              Trillionth      Billionth       1960
 femto   f   1000^-5    10^-15   0.000000000000001           Quadrillionth   Billiardth      1964
 atto    a   1000^-6    10^-18   0.000000000000000001        Quintillionth   Trillionth      1964
 zepto   z   1000^-7    10^-21   0.000000000000000000001     Sextillionth    Trilliardth     1991
 yocto   y   1000^-8    10^-24   0.000000000000000000000001  Septillionth    Quadrillionth   1991
 - See the Checker Framework Manual:
- Units Checker
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionSI prefix for 10^-18.SI prefix for 10^-2.SI prefix for 10^1.SI prefix for 10^-1.SI prefix for 10^18.SI prefix for 10^-15.SI prefix for 10^9.SI prefix for 10^2.SI prefix for 10^3.SI prefix for 10^6.SI prefix for 10^-6.SI prefix for 10^-3.SI prefix for 10^-9.SI prefix for 10^0, or 1.SI prefix for 10^15.SI prefix for 10^-12.SI prefix for 10^12.SI prefix for 10^-24.SI prefix for 10^24.SI prefix for 10^-21.SI prefix for 10^21.
- 
Method Summary
- 
Enum Constant Details- 
yottaSI prefix for 10^24.
- 
zettaSI prefix for 10^21.
- 
exaSI prefix for 10^18.
- 
petaSI prefix for 10^15.
- 
teraSI prefix for 10^12.
- 
gigaSI prefix for 10^9.
- 
megaSI prefix for 10^6.
- 
kiloSI prefix for 10^3.
- 
hectoSI prefix for 10^2.
- 
decaSI prefix for 10^1.
- 
oneSI prefix for 10^0, or 1.
- 
deciSI prefix for 10^-1.
- 
centiSI prefix for 10^-2.
- 
milliSI prefix for 10^-3.
- 
microSI prefix for 10^-6.
- 
nanoSI prefix for 10^-9.
- 
picoSI prefix for 10^-12.
- 
femtoSI prefix for 10^-15.
- 
attoSI prefix for 10^-18.
- 
zeptoSI prefix for 10^-21.
- 
yoctoSI prefix for 10^-24.
 
- 
- 
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
 
 
-