Interface CTOleObjects
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTOleObjects extends XmlObject
An XML CT_OleObjects(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTOleObjects.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 CTOleObjectaddNewOleObject()Appends and returns a new empty value (as xml) as the last "oleObject" elementCTOleObject[]getOleObjectArray()Deprecated.CTOleObjectgetOleObjectArray(int i)Gets ith "oleObject" elementjava.util.List<CTOleObject>getOleObjectList()Gets a List of "oleObject" elementsCTOleObjectinsertNewOleObject(int i)Inserts and returns a new empty value (as xml) as the ith "oleObject" elementvoidremoveOleObject(int i)Removes the ith "oleObject" elementvoidsetOleObjectArray(int i, CTOleObject oleObject)Sets ith "oleObject" elementvoidsetOleObjectArray(CTOleObject[] oleObjectArray)Sets array of all "oleObject" elementintsizeOfOleObjectArray()Returns number of "oleObject" 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
-
getOleObjectList
java.util.List<CTOleObject> getOleObjectList()
Gets a List of "oleObject" elements
-
getOleObjectArray
@Deprecated CTOleObject[] getOleObjectArray()
Deprecated.Gets array of all "oleObject" elements
-
getOleObjectArray
CTOleObject getOleObjectArray(int i)
Gets ith "oleObject" element
-
sizeOfOleObjectArray
int sizeOfOleObjectArray()
Returns number of "oleObject" element
-
setOleObjectArray
void setOleObjectArray(CTOleObject[] oleObjectArray)
Sets array of all "oleObject" element
-
setOleObjectArray
void setOleObjectArray(int i, CTOleObject oleObject)Sets ith "oleObject" element
-
insertNewOleObject
CTOleObject insertNewOleObject(int i)
Inserts and returns a new empty value (as xml) as the ith "oleObject" element
-
addNewOleObject
CTOleObject addNewOleObject()
Appends and returns a new empty value (as xml) as the last "oleObject" element
-
removeOleObject
void removeOleObject(int i)
Removes the ith "oleObject" element
-
-