Package net.opengis.swe.x20
Interface DataRecordType
-
- All Superinterfaces:
AbstractDataComponentType,AbstractSWEIdentifiableType,AbstractSWEType,org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
DataRecordTypeImpl
public interface DataRecordType extends AbstractDataComponentType
An XML DataRecordType(@http://www.opengis.net/swe/2.0). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classDataRecordType.FactoryA factory class with static methods for creating instances of this type.static interfaceDataRecordType.FieldAn XML field(@http://www.opengis.net/swe/2.0).
-
Field Summary
Fields Modifier and Type Field Description static org.apache.xmlbeans.SchemaTypetype
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataRecordType.FieldaddNewField()Appends and returns a new empty value (as xml) as the last "field" elementDataRecordType.Field[]getFieldArray()Gets array of all "field" elementsDataRecordType.FieldgetFieldArray(int i)Gets ith "field" elementDataRecordType.FieldinsertNewField(int i)Inserts and returns a new empty value (as xml) as the ith "field" elementvoidremoveField(int i)Removes the ith "field" elementvoidsetFieldArray(int i, DataRecordType.Field field)Sets ith "field" elementvoidsetFieldArray(DataRecordType.Field[] fieldArray)Sets array of all "field" elementintsizeOfFieldArray()Returns number of "field" element-
Methods inherited from interface net.opengis.swe.x20.AbstractDataComponentType
getDefinition, getOptional, getUpdatable, isSetDefinition, isSetOptional, isSetUpdatable, setDefinition, setOptional, setUpdatable, unsetDefinition, unsetOptional, unsetUpdatable, xgetDefinition, xgetOptional, xgetUpdatable, xsetDefinition, xsetOptional, xsetUpdatable
-
Methods inherited from interface net.opengis.swe.x20.AbstractSWEIdentifiableType
getDescription, getIdentifier, getLabel, isSetDescription, isSetIdentifier, isSetLabel, setDescription, setIdentifier, setLabel, unsetDescription, unsetIdentifier, unsetLabel, xgetDescription, xgetIdentifier, xgetLabel, xsetDescription, xsetIdentifier, xsetLabel
-
Methods inherited from interface net.opengis.swe.x20.AbstractSWEType
addNewExtension, getExtensionArray, getExtensionArray, getId, insertNewExtension, isSetId, removeExtension, setExtensionArray, setExtensionArray, setId, sizeOfExtensionArray, unsetId, xgetId, xsetId
-
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
-
-
-
-
Method Detail
-
getFieldArray
DataRecordType.Field[] getFieldArray()
Gets array of all "field" elements
-
getFieldArray
DataRecordType.Field getFieldArray(int i)
Gets ith "field" element
-
sizeOfFieldArray
int sizeOfFieldArray()
Returns number of "field" element
-
setFieldArray
void setFieldArray(DataRecordType.Field[] fieldArray)
Sets array of all "field" element
-
setFieldArray
void setFieldArray(int i, DataRecordType.Field field)Sets ith "field" element
-
insertNewField
DataRecordType.Field insertNewField(int i)
Inserts and returns a new empty value (as xml) as the ith "field" element
-
addNewField
DataRecordType.Field addNewField()
Appends and returns a new empty value (as xml) as the last "field" element
-
removeField
void removeField(int i)
Removes the ith "field" element
-
-