Enum Class VecSiPrefix

java.lang.Object
java.lang.Enum<VecSiPrefix>
com.foursoft.harness.vec.v113.VecSiPrefix
All Implemented Interfaces:
Serializable, Comparable<VecSiPrefix>, Constable

public enum VecSiPrefix extends Enum<VecSiPrefix>

Enumeration for the definition of SI unit prefixes.

Java class for SiPrefix.

The following schema fragment specifies the expected content contained within this class.


 <simpleType name="SiPrefix">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Yotta"/>
     <enumeration value="Zetta"/>
     <enumeration value="Exa"/>
     <enumeration value="Peta"/>
     <enumeration value="Tera"/>
     <enumeration value="Giga"/>
     <enumeration value="Mega"/>
     <enumeration value="Kilo"/>
     <enumeration value="Hecto"/>
     <enumeration value="Deca"/>
     <enumeration value="Deci"/>
     <enumeration value="Centi"/>
     <enumeration value="Milli"/>
     <enumeration value="Micro"/>
     <enumeration value="Nano"/>
     <enumeration value="Pico"/>
     <enumeration value="Femto"/>
     <enumeration value="Atto"/>
     <enumeration value="Zepto"/>
     <enumeration value="Yocto"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

  • Method Details

    • values

      public static VecSiPrefix[] 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

      public static VecSiPrefix valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • value

      public String value()
    • fromValue

      public static VecSiPrefix fromValue(String v)