Package net.opengis.waterml.x20
Interface CategoricalTimeseriesType
-
- All Superinterfaces:
AbstractFeatureType,AbstractGMLType,TimeseriesType,org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
CategoricalTimeseriesTypeImpl
public interface CategoricalTimeseriesType extends TimeseriesType
An XML CategoricalTimeseriesType(@http://www.opengis.net/waterml/2.0). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCategoricalTimeseriesType.FactoryA factory class with static methods for creating instances of this type.static interfaceCategoricalTimeseriesType.PointAn XML point(@http://www.opengis.net/waterml/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 CategoricalTimeseriesType.PointaddNewPoint()Appends and returns a new empty value (as xml) as the last "point" elementCategoricalTimeseriesType.Point[]getPointArray()Gets array of all "point" elementsCategoricalTimeseriesType.PointgetPointArray(int i)Gets ith "point" elementCategoricalTimeseriesType.PointinsertNewPoint(int i)Inserts and returns a new empty value (as xml) as the ith "point" elementvoidremovePoint(int i)Removes the ith "point" elementvoidsetPointArray(int i, CategoricalTimeseriesType.Point point)Sets ith "point" elementvoidsetPointArray(CategoricalTimeseriesType.Point[] pointArray)Sets array of all "point" elementintsizeOfPointArray()Returns number of "point" element-
Methods inherited from interface net.opengis.gml.x32.AbstractFeatureType
addNewBoundedBy, addNewLocation, getBoundedBy, getLocation, isNilBoundedBy, isSetBoundedBy, isSetLocation, setBoundedBy, setLocation, setNilBoundedBy, unsetBoundedBy, unsetLocation
-
Methods inherited from interface net.opengis.gml.x32.AbstractGMLType
addNewDescription, addNewDescriptionReference, addNewIdentifier, addNewMetaDataProperty, addNewName, getDescription, getDescriptionReference, getId, getIdentifier, getMetaDataPropertyArray, getMetaDataPropertyArray, getNameArray, getNameArray, insertNewMetaDataProperty, insertNewName, isSetDescription, isSetDescriptionReference, isSetIdentifier, removeMetaDataProperty, removeName, setDescription, setDescriptionReference, setId, setIdentifier, setMetaDataPropertyArray, setMetaDataPropertyArray, setNameArray, setNameArray, sizeOfMetaDataPropertyArray, sizeOfNameArray, unsetDescription, unsetDescriptionReference, unsetIdentifier, xgetId, xsetId
-
Methods inherited from interface net.opengis.waterml.x20.TimeseriesType
addNewDefaultPointMetadata, addNewMetadata, getDefaultPointMetadataArray, getDefaultPointMetadataArray, getMetadata, insertNewDefaultPointMetadata, isSetMetadata, removeDefaultPointMetadata, setDefaultPointMetadataArray, setDefaultPointMetadataArray, setMetadata, sizeOfDefaultPointMetadataArray, unsetMetadata
-
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
-
getPointArray
CategoricalTimeseriesType.Point[] getPointArray()
Gets array of all "point" elements
-
getPointArray
CategoricalTimeseriesType.Point getPointArray(int i)
Gets ith "point" element
-
sizeOfPointArray
int sizeOfPointArray()
Returns number of "point" element
-
setPointArray
void setPointArray(CategoricalTimeseriesType.Point[] pointArray)
Sets array of all "point" element
-
setPointArray
void setPointArray(int i, CategoricalTimeseriesType.Point point)Sets ith "point" element
-
insertNewPoint
CategoricalTimeseriesType.Point insertNewPoint(int i)
Inserts and returns a new empty value (as xml) as the ith "point" element
-
addNewPoint
CategoricalTimeseriesType.Point addNewPoint()
Appends and returns a new empty value (as xml) as the last "point" element
-
removePoint
void removePoint(int i)
Removes the ith "point" element
-
-