Package org.docx4j.wml
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 CLEARNo PatternDIAG_CROSSDiagonal Cross PatternDIAG_STRIPEDiagonal Stripe PatternHORZ_CROSSHorizontal Cross PatternHORZ_STRIPEHorizontal Stripe PatternNILNo PatternPCT_1010% Fill PatternPCT_1212.5% Fill PatternPCT_1515% Fill PatternPCT_2020% Fill PatternPCT_2525% Fill PatternPCT_3030% Fill PatternPCT_3535% Fill PatternPCT_3737.5% Fill PatternPCT_4040% Fill PatternPCT_4545% Fill PatternPCT_55% Fill PatternPCT_5050% Fill PatternPCT_5555% Fill PatternPCT_6060% Fill PatternPCT_6262.5% Fill PatternPCT_6565% Fill PatternPCT_7070% Fill PatternPCT_7575% Fill PatternPCT_8080% Fill PatternPCT_8585% Fill PatternPCT_8787.5% Fill PatternPCT_9090% Fill PatternPCT_9595% Fill PatternREVERSE_DIAG_STRIPEReverse Diagonal Stripe PatternSOLID100% Fill PatternTHIN_DIAG_CROSSThin Diagonal Cross PatternTHIN_DIAG_STRIPEThin Diagonal Stripe PatternTHIN_HORZ_CROSSThin Horizontal Cross PatternTHIN_HORZ_STRIPEThin Horizontal Stripe PatternTHIN_REVERSE_DIAG_STRIPEThin Reverse Diagonal Stripe PatternTHIN_VERT_STRIPEThin Vertical Stripe PatternVERT_STRIPEVertical Stripe Pattern -
Method Summary
Modifier and Type Method Description static STShdfromValue(java.lang.String v)java.lang.Stringvalue()static STShdvalueOf(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, valueOfMethods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-
Enum Constant Details
-
NIL
No Pattern -
CLEAR
No Pattern -
SOLID
100% Fill Pattern -
HORZ_STRIPE
Horizontal Stripe Pattern -
VERT_STRIPE
Vertical Stripe Pattern -
REVERSE_DIAG_STRIPE
Reverse Diagonal Stripe Pattern -
DIAG_STRIPE
Diagonal Stripe Pattern -
HORZ_CROSS
Horizontal Cross Pattern -
DIAG_CROSS
Diagonal Cross Pattern -
THIN_HORZ_STRIPE
Thin Horizontal Stripe Pattern -
THIN_VERT_STRIPE
Thin Vertical Stripe Pattern -
THIN_REVERSE_DIAG_STRIPE
Thin Reverse Diagonal Stripe Pattern -
THIN_DIAG_STRIPE
Thin Diagonal Stripe Pattern -
THIN_HORZ_CROSS
Thin Horizontal Cross Pattern -
THIN_DIAG_CROSS
Thin Diagonal Cross Pattern -
PCT_5
5% Fill 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_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
-
-
Method Details
-
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
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 namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value() -
fromValue
-