Package net.opengis.gml
Interface PointType
-
- All Superinterfaces:
AbstractGeometricPrimitiveType,AbstractGeometryType,AbstractGMLType,org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
PointTypeImpl
public interface PointType extends AbstractGeometricPrimitiveType
An XML PointType(@http://www.opengis.net/gml). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPointType.FactoryA factory class with static methods for creating instances of this type.
-
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 CoordTypeaddNewCoord()Appends and returns a new empty "coord" elementCoordinatesTypeaddNewCoordinates()Appends and returns a new empty "coordinates" elementDirectPositionTypeaddNewPos()Appends and returns a new empty "pos" elementCoordTypegetCoord()Gets the "coord" elementCoordinatesTypegetCoordinates()Gets the "coordinates" elementDirectPositionTypegetPos()Gets the "pos" elementbooleanisSetCoord()True if has "coord" elementbooleanisSetCoordinates()True if has "coordinates" elementbooleanisSetPos()True if has "pos" elementvoidsetCoord(CoordType coord)Sets the "coord" elementvoidsetCoordinates(CoordinatesType coordinates)Sets the "coordinates" elementvoidsetPos(DirectPositionType pos)Sets the "pos" elementvoidunsetCoord()Unsets the "coord" elementvoidunsetCoordinates()Unsets the "coordinates" elementvoidunsetPos()Unsets the "pos" element-
Methods inherited from interface net.opengis.gml.AbstractGeometryType
getAxisLabels, getGid, getSrsDimension, getSrsName, getUomLabels, isSetAxisLabels, isSetGid, isSetSrsDimension, isSetSrsName, isSetUomLabels, setAxisLabels, setGid, setSrsDimension, setSrsName, setUomLabels, unsetAxisLabels, unsetGid, unsetSrsDimension, unsetSrsName, unsetUomLabels, xgetAxisLabels, xgetGid, xgetSrsDimension, xgetSrsName, xgetUomLabels, xsetAxisLabels, xsetGid, xsetSrsDimension, xsetSrsName, xsetUomLabels
-
Methods inherited from interface net.opengis.gml.AbstractGMLType
addNewDescription, addNewMetaDataProperty, addNewName, getDescription, getId, getMetaDataPropertyArray, getMetaDataPropertyArray, getNameArray, getNameArray, insertNewMetaDataProperty, insertNewName, isSetDescription, isSetId, removeMetaDataProperty, removeName, setDescription, setId, setMetaDataPropertyArray, setMetaDataPropertyArray, setNameArray, setNameArray, sizeOfMetaDataPropertyArray, sizeOfNameArray, unsetDescription, 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
-
getPos
DirectPositionType getPos()
Gets the "pos" element
-
isSetPos
boolean isSetPos()
True if has "pos" element
-
setPos
void setPos(DirectPositionType pos)
Sets the "pos" element
-
addNewPos
DirectPositionType addNewPos()
Appends and returns a new empty "pos" element
-
unsetPos
void unsetPos()
Unsets the "pos" element
-
getCoordinates
CoordinatesType getCoordinates()
Gets the "coordinates" element
-
isSetCoordinates
boolean isSetCoordinates()
True if has "coordinates" element
-
setCoordinates
void setCoordinates(CoordinatesType coordinates)
Sets the "coordinates" element
-
addNewCoordinates
CoordinatesType addNewCoordinates()
Appends and returns a new empty "coordinates" element
-
unsetCoordinates
void unsetCoordinates()
Unsets the "coordinates" element
-
getCoord
CoordType getCoord()
Gets the "coord" element
-
isSetCoord
boolean isSetCoord()
True if has "coord" element
-
setCoord
void setCoord(CoordType coord)
Sets the "coord" element
-
addNewCoord
CoordType addNewCoord()
Appends and returns a new empty "coord" element
-
unsetCoord
void unsetCoord()
Unsets the "coord" element
-
-