Interface CTMapInfo
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTMapInfo extends XmlObject
An XML CT_MapInfo(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTMapInfo.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 CTMapaddNewMap()Appends and returns a new empty value (as xml) as the last "Map" elementCTSchemaaddNewSchema()Appends and returns a new empty value (as xml) as the last "Schema" elementCTMap[]getMapArray()Deprecated.CTMapgetMapArray(int i)Gets ith "Map" elementjava.util.List<CTMap>getMapList()Gets a List of "Map" elementsCTSchema[]getSchemaArray()Deprecated.CTSchemagetSchemaArray(int i)Gets ith "Schema" elementjava.util.List<CTSchema>getSchemaList()Gets a List of "Schema" elementsjava.lang.StringgetSelectionNamespaces()Gets the "SelectionNamespaces" attributeCTMapinsertNewMap(int i)Inserts and returns a new empty value (as xml) as the ith "Map" elementCTSchemainsertNewSchema(int i)Inserts and returns a new empty value (as xml) as the ith "Schema" elementvoidremoveMap(int i)Removes the ith "Map" elementvoidremoveSchema(int i)Removes the ith "Schema" elementvoidsetMapArray(int i, CTMap map)Sets ith "Map" elementvoidsetMapArray(CTMap[] mapArray)Sets array of all "Map" elementvoidsetSchemaArray(int i, CTSchema schema)Sets ith "Schema" elementvoidsetSchemaArray(CTSchema[] schemaArray)Sets array of all "Schema" elementvoidsetSelectionNamespaces(java.lang.String selectionNamespaces)Sets the "SelectionNamespaces" attributeintsizeOfMapArray()Returns number of "Map" elementintsizeOfSchemaArray()Returns number of "Schema" elementXmlStringxgetSelectionNamespaces()Gets (as xml) the "SelectionNamespaces" attributevoidxsetSelectionNamespaces(XmlString selectionNamespaces)Sets (as xml) the "SelectionNamespaces" attribute-
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
-
getSchemaList
java.util.List<CTSchema> getSchemaList()
Gets a List of "Schema" elements
-
getSchemaArray
@Deprecated CTSchema[] getSchemaArray()
Deprecated.Gets array of all "Schema" elements
-
getSchemaArray
CTSchema getSchemaArray(int i)
Gets ith "Schema" element
-
sizeOfSchemaArray
int sizeOfSchemaArray()
Returns number of "Schema" element
-
setSchemaArray
void setSchemaArray(CTSchema[] schemaArray)
Sets array of all "Schema" element
-
setSchemaArray
void setSchemaArray(int i, CTSchema schema)Sets ith "Schema" element
-
insertNewSchema
CTSchema insertNewSchema(int i)
Inserts and returns a new empty value (as xml) as the ith "Schema" element
-
addNewSchema
CTSchema addNewSchema()
Appends and returns a new empty value (as xml) as the last "Schema" element
-
removeSchema
void removeSchema(int i)
Removes the ith "Schema" element
-
getMapList
java.util.List<CTMap> getMapList()
Gets a List of "Map" elements
-
getMapArray
@Deprecated CTMap[] getMapArray()
Deprecated.Gets array of all "Map" elements
-
getMapArray
CTMap getMapArray(int i)
Gets ith "Map" element
-
sizeOfMapArray
int sizeOfMapArray()
Returns number of "Map" element
-
setMapArray
void setMapArray(CTMap[] mapArray)
Sets array of all "Map" element
-
setMapArray
void setMapArray(int i, CTMap map)Sets ith "Map" element
-
insertNewMap
CTMap insertNewMap(int i)
Inserts and returns a new empty value (as xml) as the ith "Map" element
-
addNewMap
CTMap addNewMap()
Appends and returns a new empty value (as xml) as the last "Map" element
-
removeMap
void removeMap(int i)
Removes the ith "Map" element
-
getSelectionNamespaces
java.lang.String getSelectionNamespaces()
Gets the "SelectionNamespaces" attribute
-
xgetSelectionNamespaces
XmlString xgetSelectionNamespaces()
Gets (as xml) the "SelectionNamespaces" attribute
-
setSelectionNamespaces
void setSelectionNamespaces(java.lang.String selectionNamespaces)
Sets the "SelectionNamespaces" attribute
-
xsetSelectionNamespaces
void xsetSelectionNamespaces(XmlString selectionNamespaces)
Sets (as xml) the "SelectionNamespaces" attribute
-
-