Enum STCrosses

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

public enum STCrosses extends Enum<STCrosses>

Java class for ST_Crosses.

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

 <simpleType name="ST_Crosses">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="autoZero"/>
     <enumeration value="max"/>
     <enumeration value="min"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • AUTO_ZERO

      public static final STCrosses AUTO_ZERO
      Axis Crosses at Zero
    • MAX

      public static final STCrosses MAX
      Maximum
    • MIN

      public static final STCrosses MIN
      Minimum
  • Method Details

    • values

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