Enum STShd

java.lang.Object
java.lang.Enum<STShd>
org.docx4j.wml.STShd
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<STShd>, java.lang.constant.Constable

public enum STShd
extends java.lang.Enum<STShd>

Java class for ST_Shd.

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

 <simpleType name="ST_Shd">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="nil"/>
     <enumeration value="clear"/>
     <enumeration value="solid"/>
     <enumeration value="horzStripe"/>
     <enumeration value="vertStripe"/>
     <enumeration value="reverseDiagStripe"/>
     <enumeration value="diagStripe"/>
     <enumeration value="horzCross"/>
     <enumeration value="diagCross"/>
     <enumeration value="thinHorzStripe"/>
     <enumeration value="thinVertStripe"/>
     <enumeration value="thinReverseDiagStripe"/>
     <enumeration value="thinDiagStripe"/>
     <enumeration value="thinHorzCross"/>
     <enumeration value="thinDiagCross"/>
     <enumeration value="pct5"/>
     <enumeration value="pct10"/>
     <enumeration value="pct12"/>
     <enumeration value="pct15"/>
     <enumeration value="pct20"/>
     <enumeration value="pct25"/>
     <enumeration value="pct30"/>
     <enumeration value="pct35"/>
     <enumeration value="pct37"/>
     <enumeration value="pct40"/>
     <enumeration value="pct45"/>
     <enumeration value="pct50"/>
     <enumeration value="pct55"/>
     <enumeration value="pct60"/>
     <enumeration value="pct62"/>
     <enumeration value="pct65"/>
     <enumeration value="pct70"/>
     <enumeration value="pct75"/>
     <enumeration value="pct80"/>
     <enumeration value="pct85"/>
     <enumeration value="pct87"/>
     <enumeration value="pct90"/>
     <enumeration value="pct95"/>
   </restriction>
 </simpleType>
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • Enum Constant Summary

    Enum Constants 
    Enum Constant Description
    CLEAR
    No Pattern
    DIAG_CROSS
    Diagonal Cross Pattern
    DIAG_STRIPE
    Diagonal Stripe Pattern
    HORZ_CROSS
    Horizontal Cross Pattern
    HORZ_STRIPE
    Horizontal Stripe Pattern
    NIL
    No Pattern
    PCT_10
    10% Fill Pattern
    PCT_12
    12.5% Fill Pattern
    PCT_15
    15% Fill Pattern
    PCT_20
    20% Fill Pattern
    PCT_25
    25% Fill Pattern
    PCT_30
    30% Fill Pattern
    PCT_35
    35% Fill Pattern
    PCT_37
    37.5% Fill Pattern
    PCT_40
    40% Fill Pattern
    PCT_45
    45% Fill Pattern
    PCT_5
    5% Fill Pattern
    PCT_50
    50% Fill Pattern
    PCT_55
    55% Fill Pattern
    PCT_60
    60% Fill Pattern
    PCT_62
    62.5% Fill Pattern
    PCT_65
    65% Fill Pattern
    PCT_70
    70% Fill Pattern
    PCT_75
    75% Fill Pattern
    PCT_80
    80% Fill Pattern
    PCT_85
    85% Fill Pattern
    PCT_87
    87.5% Fill Pattern
    PCT_90
    90% Fill Pattern
    PCT_95
    95% Fill Pattern
    REVERSE_DIAG_STRIPE
    Reverse Diagonal Stripe Pattern
    SOLID
    100% Fill Pattern
    THIN_DIAG_CROSS
    Thin Diagonal Cross Pattern
    THIN_DIAG_STRIPE
    Thin Diagonal Stripe Pattern
    THIN_HORZ_CROSS
    Thin Horizontal Cross Pattern
    THIN_HORZ_STRIPE
    Thin Horizontal Stripe Pattern
    THIN_REVERSE_DIAG_STRIPE
    Thin Reverse Diagonal Stripe Pattern
    THIN_VERT_STRIPE
    Thin Vertical Stripe Pattern
    VERT_STRIPE
    Vertical Stripe Pattern
  • Method Summary

    Modifier and Type Method Description
    static STShd fromValue​(java.lang.String v)  
    java.lang.String value()  
    static STShd valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static STShd[] values()
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

  • Method Details

    • values

      public static STShd[] 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 STShd valueOf​(java.lang.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:
      java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
      java.lang.NullPointerException - if the argument is null
    • value

      public java.lang.String value()
    • fromValue

      public static STShd fromValue​(java.lang.String v)