Package org.graphdrawing.graphml.xmlns
Interface GraphmlType
- All Superinterfaces:
org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
GraphmlTypeImpl
public interface GraphmlType
extends org.apache.xmlbeans.XmlObject
An XML graphml.type(@http://graphml.graphdrawing.org/xmlns).
This is a complex type.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA factory class with static methods for creating instances of this type. -
Field Summary
FieldsFields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL -
Method Summary
Modifier and TypeMethodDescriptionAppends and returns a new empty value (as xml) as the last "data" elementAppends and returns a new empty value (as xml) as the last "graph" elementAppends and returns a new empty value (as xml) as the last "key" elementDataType[]Gets array of all "data" elementsgetDataArray(int i) Gets ith "data" elementgetDesc()Gets the "desc" elementGets array of all "graph" elementsgetGraphArray(int i) Gets ith "graph" elementKeyType[]Gets array of all "key" elementsgetKeyArray(int i) Gets ith "key" elementinsertNewData(int i) Inserts and returns a new empty value (as xml) as the ith "data" elementinsertNewGraph(int i) Inserts and returns a new empty value (as xml) as the ith "graph" elementinsertNewKey(int i) Inserts and returns a new empty value (as xml) as the ith "key" elementbooleanTrue if has "desc" elementvoidremoveData(int i) Removes the ith "data" elementvoidremoveGraph(int i) Removes the ith "graph" elementvoidremoveKey(int i) Removes the ith "key" elementvoidsetDataArray(int i, DataType data) Sets ith "data" elementvoidsetDataArray(DataType[] dataArray) Sets array of all "data" elementvoidSets the "desc" elementvoidsetGraphArray(int i, GraphType graph) Sets ith "graph" elementvoidsetGraphArray(GraphType[] graphArray) Sets array of all "graph" elementvoidsetKeyArray(int i, KeyType key) Sets ith "key" elementvoidsetKeyArray(KeyType[] keyArray) Sets array of all "key" elementintReturns number of "data" elementintReturns number of "graph" elementintReturns number of "key" elementvoidUnsets the "desc" elementorg.apache.xmlbeans.XmlStringxgetDesc()Gets (as xml) the "desc" elementvoidxsetDesc(org.apache.xmlbeans.XmlString desc) Sets (as xml) the "desc" elementMethods 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, valueHashCodeMethods 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 Details
-
type
static final org.apache.xmlbeans.SchemaType type
-
-
Method Details
-
getDesc
String getDesc()Gets the "desc" element -
xgetDesc
org.apache.xmlbeans.XmlString xgetDesc()Gets (as xml) the "desc" element -
isSetDesc
boolean isSetDesc()True if has "desc" element -
setDesc
Sets the "desc" element -
xsetDesc
void xsetDesc(org.apache.xmlbeans.XmlString desc) Sets (as xml) the "desc" element -
unsetDesc
void unsetDesc()Unsets the "desc" element -
getKeyArray
KeyType[] getKeyArray()Gets array of all "key" elements -
getKeyArray
Gets ith "key" element -
sizeOfKeyArray
int sizeOfKeyArray()Returns number of "key" element -
setKeyArray
Sets array of all "key" element -
setKeyArray
Sets ith "key" element -
insertNewKey
Inserts and returns a new empty value (as xml) as the ith "key" element -
addNewKey
KeyType addNewKey()Appends and returns a new empty value (as xml) as the last "key" element -
removeKey
void removeKey(int i) Removes the ith "key" element -
getGraphArray
GraphType[] getGraphArray()Gets array of all "graph" elements -
getGraphArray
Gets ith "graph" element -
sizeOfGraphArray
int sizeOfGraphArray()Returns number of "graph" element -
setGraphArray
Sets array of all "graph" element -
setGraphArray
Sets ith "graph" element -
insertNewGraph
Inserts and returns a new empty value (as xml) as the ith "graph" element -
addNewGraph
GraphType addNewGraph()Appends and returns a new empty value (as xml) as the last "graph" element -
removeGraph
void removeGraph(int i) Removes the ith "graph" element -
getDataArray
DataType[] getDataArray()Gets array of all "data" elements -
getDataArray
Gets ith "data" element -
sizeOfDataArray
int sizeOfDataArray()Returns number of "data" element -
setDataArray
Sets array of all "data" element -
setDataArray
Sets ith "data" element -
insertNewData
Inserts and returns a new empty value (as xml) as the ith "data" element -
addNewData
DataType addNewData()Appends and returns a new empty value (as xml) as the last "data" element -
removeData
void removeData(int i) Removes the ith "data" element
-