Interface DownloadedSchemasDocument.DownloadedSchemas
-
- All Superinterfaces:
XmlObject,XmlTokenSource
- All Known Implementing Classes:
DownloadedSchemasDocumentImpl.DownloadedSchemasImpl
- Enclosing interface:
- DownloadedSchemasDocument
public static interface DownloadedSchemasDocument.DownloadedSchemas extends XmlObject
An XML downloaded-schemas(@http://www.bea.com/2003/01/xmlbean/xsdownload). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static ElementFactory<DownloadedSchemasDocument.DownloadedSchemas>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 DownloadedSchemaEntryaddNewEntry()Appends and returns a new empty value (as xml) as the last "entry" elementjava.lang.StringgetDefaultDirectory()Gets the "defaultDirectory" attributeDownloadedSchemaEntry[]getEntryArray()Gets array of all "entry" elementsDownloadedSchemaEntrygetEntryArray(int i)Gets ith "entry" elementjava.util.List<DownloadedSchemaEntry>getEntryList()Gets a List of "entry" elementsDownloadedSchemaEntryinsertNewEntry(int i)Inserts and returns a new empty value (as xml) as the ith "entry" elementbooleanisSetDefaultDirectory()True if has "defaultDirectory" attributevoidremoveEntry(int i)Removes the ith "entry" elementvoidsetDefaultDirectory(java.lang.String defaultDirectory)Sets the "defaultDirectory" attributevoidsetEntryArray(int i, DownloadedSchemaEntry entry)Sets ith "entry" elementvoidsetEntryArray(DownloadedSchemaEntry[] entryArray)Sets array of all "entry" elementintsizeOfEntryArray()Returns number of "entry" elementvoidunsetDefaultDirectory()Unsets the "defaultDirectory" attributeXmlTokenxgetDefaultDirectory()Gets (as xml) the "defaultDirectory" attributevoidxsetDefaultDirectory(XmlToken defaultDirectory)Sets (as xml) the "defaultDirectory" 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, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
Factory
static final ElementFactory<DownloadedSchemasDocument.DownloadedSchemas> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getEntryList
java.util.List<DownloadedSchemaEntry> getEntryList()
Gets a List of "entry" elements
-
getEntryArray
DownloadedSchemaEntry[] getEntryArray()
Gets array of all "entry" elements
-
getEntryArray
DownloadedSchemaEntry getEntryArray(int i)
Gets ith "entry" element
-
sizeOfEntryArray
int sizeOfEntryArray()
Returns number of "entry" element
-
setEntryArray
void setEntryArray(DownloadedSchemaEntry[] entryArray)
Sets array of all "entry" element
-
setEntryArray
void setEntryArray(int i, DownloadedSchemaEntry entry)Sets ith "entry" element
-
insertNewEntry
DownloadedSchemaEntry insertNewEntry(int i)
Inserts and returns a new empty value (as xml) as the ith "entry" element
-
addNewEntry
DownloadedSchemaEntry addNewEntry()
Appends and returns a new empty value (as xml) as the last "entry" element
-
removeEntry
void removeEntry(int i)
Removes the ith "entry" element
-
getDefaultDirectory
java.lang.String getDefaultDirectory()
Gets the "defaultDirectory" attribute
-
xgetDefaultDirectory
XmlToken xgetDefaultDirectory()
Gets (as xml) the "defaultDirectory" attribute
-
isSetDefaultDirectory
boolean isSetDefaultDirectory()
True if has "defaultDirectory" attribute
-
setDefaultDirectory
void setDefaultDirectory(java.lang.String defaultDirectory)
Sets the "defaultDirectory" attribute
-
xsetDefaultDirectory
void xsetDefaultDirectory(XmlToken defaultDirectory)
Sets (as xml) the "defaultDirectory" attribute
-
unsetDefaultDirectory
void unsetDefaultDirectory()
Unsets the "defaultDirectory" attribute
-
-