Interface CTAuthors
-
- All Superinterfaces:
XmlObject,XmlTokenSource
public interface CTAuthors extends XmlObject
An XML CT_Authors(@http://schemas.openxmlformats.org/spreadsheetml/2006/main). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCTAuthors.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 voidaddAuthor(java.lang.String author)Appends the value as the last "author" elementSTXstringaddNewAuthor()Appends and returns a new empty value (as xml) as the last "author" elementjava.lang.String[]getAuthorArray()Deprecated.java.lang.StringgetAuthorArray(int i)Gets ith "author" elementjava.util.List<java.lang.String>getAuthorList()Gets a List of "author" elementsvoidinsertAuthor(int i, java.lang.String author)Inserts the value as the ith "author" elementSTXstringinsertNewAuthor(int i)Inserts and returns a new empty value (as xml) as the ith "author" elementvoidremoveAuthor(int i)Removes the ith "author" elementvoidsetAuthorArray(int i, java.lang.String author)Sets ith "author" elementvoidsetAuthorArray(java.lang.String[] authorArray)Sets array of all "author" elementintsizeOfAuthorArray()Returns number of "author" elementSTXstring[]xgetAuthorArray()Deprecated.STXstringxgetAuthorArray(int i)Gets (as xml) ith "author" elementjava.util.List<STXstring>xgetAuthorList()Gets (as xml) a List of "author" elementsvoidxsetAuthorArray(int i, STXstring author)Sets (as xml) ith "author" elementvoidxsetAuthorArray(STXstring[] authorArray)Sets (as xml) array of all "author" 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
-
getAuthorList
java.util.List<java.lang.String> getAuthorList()
Gets a List of "author" elements
-
getAuthorArray
@Deprecated java.lang.String[] getAuthorArray()
Deprecated.Gets array of all "author" elements
-
getAuthorArray
java.lang.String getAuthorArray(int i)
Gets ith "author" element
-
xgetAuthorList
java.util.List<STXstring> xgetAuthorList()
Gets (as xml) a List of "author" elements
-
xgetAuthorArray
@Deprecated STXstring[] xgetAuthorArray()
Deprecated.Gets (as xml) array of all "author" elements
-
xgetAuthorArray
STXstring xgetAuthorArray(int i)
Gets (as xml) ith "author" element
-
sizeOfAuthorArray
int sizeOfAuthorArray()
Returns number of "author" element
-
setAuthorArray
void setAuthorArray(java.lang.String[] authorArray)
Sets array of all "author" element
-
setAuthorArray
void setAuthorArray(int i, java.lang.String author)Sets ith "author" element
-
xsetAuthorArray
void xsetAuthorArray(STXstring[] authorArray)
Sets (as xml) array of all "author" element
-
xsetAuthorArray
void xsetAuthorArray(int i, STXstring author)Sets (as xml) ith "author" element
-
insertAuthor
void insertAuthor(int i, java.lang.String author)Inserts the value as the ith "author" element
-
addAuthor
void addAuthor(java.lang.String author)
Appends the value as the last "author" element
-
insertNewAuthor
STXstring insertNewAuthor(int i)
Inserts and returns a new empty value (as xml) as the ith "author" element
-
addNewAuthor
STXstring addNewAuthor()
Appends and returns a new empty value (as xml) as the last "author" element
-
removeAuthor
void removeAuthor(int i)
Removes the ith "author" element
-
-