Interface CTTLTimeConditionList
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTTLTimeConditionList extends XmlObject
An XML CT_TLTimeConditionList(@http://schemas.openxmlformats.org/presentationml/2006/main). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static DocumentFactory<CTTLTimeConditionList>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 CTTLTimeConditionaddNewCond()Appends and returns a new empty value (as xml) as the last "cond" elementCTTLTimeCondition[]getCondArray()Gets array of all "cond" elementsCTTLTimeConditiongetCondArray(int i)Gets ith "cond" elementjava.util.List<CTTLTimeCondition>getCondList()Gets a List of "cond" elementsCTTLTimeConditioninsertNewCond(int i)Inserts and returns a new empty value (as xml) as the ith "cond" elementvoidremoveCond(int i)Removes the ith "cond" elementvoidsetCondArray(int i, CTTLTimeCondition cond)Sets ith "cond" elementvoidsetCondArray(CTTLTimeCondition[] condArray)Sets array of all "cond" elementintsizeOfCondArray()Returns number of "cond" 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<CTTLTimeConditionList> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getCondList
java.util.List<CTTLTimeCondition> getCondList()
Gets a List of "cond" elements
-
getCondArray
CTTLTimeCondition[] getCondArray()
Gets array of all "cond" elements
-
getCondArray
CTTLTimeCondition getCondArray(int i)
Gets ith "cond" element
-
sizeOfCondArray
int sizeOfCondArray()
Returns number of "cond" element
-
setCondArray
void setCondArray(CTTLTimeCondition[] condArray)
Sets array of all "cond" element
-
setCondArray
void setCondArray(int i, CTTLTimeCondition cond)Sets ith "cond" element
-
insertNewCond
CTTLTimeCondition insertNewCond(int i)
Inserts and returns a new empty value (as xml) as the ith "cond" element
-
addNewCond
CTTLTimeCondition addNewCond()
Appends and returns a new empty value (as xml) as the last "cond" element
-
removeCond
void removeCond(int i)
Removes the ith "cond" element
-
-