Enum STErrValType

java.lang.Object
java.lang.Enum<STErrValType>
org.docx4j.dml.chart.STErrValType
All Implemented Interfaces:
Serializable, Comparable<STErrValType>, java.lang.constant.Constable

public enum STErrValType extends Enum<STErrValType>

Java class for ST_ErrValType.

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

 <simpleType name="ST_ErrValType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="cust"/>
     <enumeration value="fixedVal"/>
     <enumeration value="percentage"/>
     <enumeration value="stdDev"/>
     <enumeration value="stdErr"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • CUST

      public static final STErrValType CUST
      Custom Error Bars
    • FIXED_VAL

      public static final STErrValType FIXED_VAL
      Fixed Value
    • PERCENTAGE

      public static final STErrValType PERCENTAGE
      Percentage
    • STD_DEV

      public static final STErrValType STD_DEV
      Standard Deviation
    • STD_ERR

      public static final STErrValType STD_ERR
      Standard Error
  • Method Details

    • values

      public static STErrValType[] 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 STErrValType 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 STErrValType fromValue(String v)