Enum STEditAs

java.lang.Object
java.lang.Enum<STEditAs>
org.docx4j.vml.STEditAs
All Implemented Interfaces:
Serializable, Comparable<STEditAs>, java.lang.constant.Constable

public enum STEditAs extends Enum<STEditAs>

Java class for ST_EditAs.

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

 <simpleType name="ST_EditAs">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="canvas"/>
     <enumeration value="orgchart"/>
     <enumeration value="radial"/>
     <enumeration value="cycle"/>
     <enumeration value="stacked"/>
     <enumeration value="venn"/>
     <enumeration value="bullseye"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • CANVAS

      public static final STEditAs CANVAS
      Shape Canvas
    • ORGCHART

      public static final STEditAs ORGCHART
      Organization Chart Diagram
    • RADIAL

      public static final STEditAs RADIAL
      Radial Diagram
    • CYCLE

      public static final STEditAs CYCLE
      Cycle Diagram
    • STACKED

      public static final STEditAs STACKED
      Pyramid Diagram
    • VENN

      public static final STEditAs VENN
      Venn Diagram
    • BULLSEYE

      public static final STEditAs BULLSEYE
      Bullseye Diagram
  • Method Details

    • values

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