Interface CTStyles
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTStyles extends XmlObject
An XML CT_Styles(@http://schemas.openxmlformats.org/wordprocessingml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTStyles.FactoryA factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaTypetype-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description CTDocDefaultsaddNewDocDefaults()Appends and returns a new empty "docDefaults" elementCTLatentStylesaddNewLatentStyles()Appends and returns a new empty "latentStyles" elementCTStyleaddNewStyle()Appends and returns a new empty value (as xml) as the last "style" elementCTDocDefaultsgetDocDefaults()Gets the "docDefaults" elementCTLatentStylesgetLatentStyles()Gets the "latentStyles" elementCTStyle[]getStyleArray()Deprecated.CTStylegetStyleArray(int i)Gets ith "style" elementjava.util.List<CTStyle>getStyleList()Gets a List of "style" elementsCTStyleinsertNewStyle(int i)Inserts and returns a new empty value (as xml) as the ith "style" elementbooleanisSetDocDefaults()True if has "docDefaults" elementbooleanisSetLatentStyles()True if has "latentStyles" elementvoidremoveStyle(int i)Removes the ith "style" elementvoidsetDocDefaults(CTDocDefaults docDefaults)Sets the "docDefaults" elementvoidsetLatentStyles(CTLatentStyles latentStyles)Sets the "latentStyles" elementvoidsetStyleArray(int i, CTStyle style)Sets ith "style" elementvoidsetStyleArray(CTStyle[] styleArray)Sets array of all "style" elementintsizeOfStyleArray()Returns number of "style" elementvoidunsetDocDefaults()Unsets the "docDefaults" elementvoidunsetLatentStyles()Unsets the "latentStyles" element-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getDocDefaults
CTDocDefaults getDocDefaults()
Gets the "docDefaults" element
-
isSetDocDefaults
boolean isSetDocDefaults()
True if has "docDefaults" element
-
setDocDefaults
void setDocDefaults(CTDocDefaults docDefaults)
Sets the "docDefaults" element
-
addNewDocDefaults
CTDocDefaults addNewDocDefaults()
Appends and returns a new empty "docDefaults" element
-
unsetDocDefaults
void unsetDocDefaults()
Unsets the "docDefaults" element
-
getLatentStyles
CTLatentStyles getLatentStyles()
Gets the "latentStyles" element
-
isSetLatentStyles
boolean isSetLatentStyles()
True if has "latentStyles" element
-
setLatentStyles
void setLatentStyles(CTLatentStyles latentStyles)
Sets the "latentStyles" element
-
addNewLatentStyles
CTLatentStyles addNewLatentStyles()
Appends and returns a new empty "latentStyles" element
-
unsetLatentStyles
void unsetLatentStyles()
Unsets the "latentStyles" element
-
getStyleList
java.util.List<CTStyle> getStyleList()
Gets a List of "style" elements
-
getStyleArray
@Deprecated CTStyle[] getStyleArray()
Deprecated.Gets array of all "style" elements
-
getStyleArray
CTStyle getStyleArray(int i)
Gets ith "style" element
-
sizeOfStyleArray
int sizeOfStyleArray()
Returns number of "style" element
-
setStyleArray
void setStyleArray(CTStyle[] styleArray)
Sets array of all "style" element
-
setStyleArray
void setStyleArray(int i, CTStyle style)Sets ith "style" element
-
insertNewStyle
CTStyle insertNewStyle(int i)
Inserts and returns a new empty value (as xml) as the ith "style" element
-
addNewStyle
CTStyle addNewStyle()
Appends and returns a new empty value (as xml) as the last "style" element
-
removeStyle
void removeStyle(int i)
Removes the ith "style" element
-
-