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 class
CTStyles.Factory
A factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaType
type
-
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 CTDocDefaults
addNewDocDefaults()
Appends and returns a new empty "docDefaults" elementCTLatentStyles
addNewLatentStyles()
Appends and returns a new empty "latentStyles" elementCTStyle
addNewStyle()
Appends and returns a new empty value (as xml) as the last "style" elementCTDocDefaults
getDocDefaults()
Gets the "docDefaults" elementCTLatentStyles
getLatentStyles()
Gets the "latentStyles" elementCTStyle[]
getStyleArray()
Deprecated.CTStyle
getStyleArray(int i)
Gets ith "style" elementjava.util.List<CTStyle>
getStyleList()
Gets a List of "style" elementsCTStyle
insertNewStyle(int i)
Inserts and returns a new empty value (as xml) as the ith "style" elementboolean
isSetDocDefaults()
True if has "docDefaults" elementboolean
isSetLatentStyles()
True if has "latentStyles" elementvoid
removeStyle(int i)
Removes the ith "style" elementvoid
setDocDefaults(CTDocDefaults docDefaults)
Sets the "docDefaults" elementvoid
setLatentStyles(CTLatentStyles latentStyles)
Sets the "latentStyles" elementvoid
setStyleArray(int i, CTStyle style)
Sets ith "style" elementvoid
setStyleArray(CTStyle[] styleArray)
Sets array of all "style" elementint
sizeOfStyleArray()
Returns number of "style" elementvoid
unsetDocDefaults()
Unsets the "docDefaults" elementvoid
unsetLatentStyles()
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
-
-