java.lang.Object
java.lang.Enum<STAxisUnit>
org.docx4j.com.microsoft.schemas.office.drawing.x2014.chartex.STAxisUnit
All Implemented Interfaces:
Serializable, Comparable<STAxisUnit>, java.lang.constant.Constable

public enum STAxisUnit extends Enum<STAxisUnit>

Java class for ST_AxisUnit.

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

 <simpleType name="ST_AxisUnit">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="hundreds"/>
     <enumeration value="thousands"/>
     <enumeration value="tenThousands"/>
     <enumeration value="hundredThousands"/>
     <enumeration value="millions"/>
     <enumeration value="tenMillions"/>
     <enumeration value="hundredMillions"/>
     <enumeration value="billions"/>
     <enumeration value="trillions"/>
     <enumeration value="percentage"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • HUNDREDS

      public static final STAxisUnit HUNDREDS
    • THOUSANDS

      public static final STAxisUnit THOUSANDS
    • TEN_THOUSANDS

      public static final STAxisUnit TEN_THOUSANDS
    • HUNDRED_THOUSANDS

      public static final STAxisUnit HUNDRED_THOUSANDS
    • MILLIONS

      public static final STAxisUnit MILLIONS
    • TEN_MILLIONS

      public static final STAxisUnit TEN_MILLIONS
    • HUNDRED_MILLIONS

      public static final STAxisUnit HUNDRED_MILLIONS
    • BILLIONS

      public static final STAxisUnit BILLIONS
    • TRILLIONS

      public static final STAxisUnit TRILLIONS
    • PERCENTAGE

      public static final STAxisUnit PERCENTAGE
  • Method Details

    • values

      public static STAxisUnit[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static STAxisUnit 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 name
      NullPointerException - if the argument is null
    • value

      public String value()
    • fromValue

      public static STAxisUnit fromValue(String v)