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 class
CTMapInfo.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 CTMap
addNewMap()
Appends and returns a new empty value (as xml) as the last "Map" elementCTSchema
addNewSchema()
Appends and returns a new empty value (as xml) as the last "Schema" elementCTMap[]
getMapArray()
Deprecated.CTMap
getMapArray(int i)
Gets ith "Map" elementjava.util.List<CTMap>
getMapList()
Gets a List of "Map" elementsCTSchema[]
getSchemaArray()
Deprecated.CTSchema
getSchemaArray(int i)
Gets ith "Schema" elementjava.util.List<CTSchema>
getSchemaList()
Gets a List of "Schema" elementsjava.lang.String
getSelectionNamespaces()
Gets the "SelectionNamespaces" attributeCTMap
insertNewMap(int i)
Inserts and returns a new empty value (as xml) as the ith "Map" elementCTSchema
insertNewSchema(int i)
Inserts and returns a new empty value (as xml) as the ith "Schema" elementvoid
removeMap(int i)
Removes the ith "Map" elementvoid
removeSchema(int i)
Removes the ith "Schema" elementvoid
setMapArray(int i, CTMap map)
Sets ith "Map" elementvoid
setMapArray(CTMap[] mapArray)
Sets array of all "Map" elementvoid
setSchemaArray(int i, CTSchema schema)
Sets ith "Schema" elementvoid
setSchemaArray(CTSchema[] schemaArray)
Sets array of all "Schema" elementvoid
setSelectionNamespaces(java.lang.String selectionNamespaces)
Sets the "SelectionNamespaces" attributeint
sizeOfMapArray()
Returns number of "Map" elementint
sizeOfSchemaArray()
Returns number of "Schema" elementXmlString
xgetSelectionNamespaces()
Gets (as xml) the "SelectionNamespaces" attributevoid
xsetSelectionNamespaces(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
-
-