Enum STOnOff

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

public enum STOnOff extends Enum<STOnOff>

Java class for ST_OnOff.

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

 <simpleType name="ST_OnOff">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="true"/>
     <enumeration value="false"/>
     <enumeration value="on"/>
     <enumeration value="off"/>
     <enumeration value="0"/>
     <enumeration value="1"/>
   </restriction>
 </simpleType>
 
Since:
3.0.0
  • Enum Constant Details

    • TRUE

      public static final STOnOff TRUE
      True
    • FALSE

      public static final STOnOff FALSE
      False
    • ON

      public static final STOnOff ON
      True
    • OFF

      public static final STOnOff OFF
      False
    • ZERO

      public static final STOnOff ZERO
      False
    • ONE

      public static final STOnOff ONE
      True
  • Method Details

    • values

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