Interface CTMCS
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTMCS extends XmlObject
An XML CT_MCS(@http://schemas.openxmlformats.org/officeDocument/2006/math). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static DocumentFactory<CTMCS>Factorystatic SchemaTypetype-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CTMCaddNewMc()Appends and returns a new empty value (as xml) as the last "mc" elementCTMC[]getMcArray()Gets array of all "mc" elementsCTMCgetMcArray(int i)Gets ith "mc" elementjava.util.List<CTMC>getMcList()Gets a List of "mc" elementsCTMCinsertNewMc(int i)Inserts and returns a new empty value (as xml) as the ith "mc" elementvoidremoveMc(int i)Removes the ith "mc" elementvoidsetMcArray(int i, CTMC mc)Sets ith "mc" elementvoidsetMcArray(CTMC[] mcArray)Sets array of all "mc" elementintsizeOfMcArray()Returns number of "mc" 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, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
Factory
static final DocumentFactory<CTMCS> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getMcList
java.util.List<CTMC> getMcList()
Gets a List of "mc" elements
-
getMcArray
CTMC[] getMcArray()
Gets array of all "mc" elements
-
getMcArray
CTMC getMcArray(int i)
Gets ith "mc" element
-
sizeOfMcArray
int sizeOfMcArray()
Returns number of "mc" element
-
setMcArray
void setMcArray(CTMC[] mcArray)
Sets array of all "mc" element
-
setMcArray
void setMcArray(int i, CTMC mc)Sets ith "mc" element
-
insertNewMc
CTMC insertNewMc(int i)
Inserts and returns a new empty value (as xml) as the ith "mc" element
-
addNewMc
CTMC addNewMc()
Appends and returns a new empty value (as xml) as the last "mc" element
-
removeMc
void removeMc(int i)
Removes the ith "mc" element
-
-