Package net.opengis.gml.x32
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/3.2). 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 CoordinatesTypeaddNewCoordinates()Appends and returns a new empty "coordinates" elementDirectPositionTypeaddNewPos()Appends and returns a new empty "pos" elementCoordinatesTypegetCoordinates()Gets the "coordinates" elementDirectPositionTypegetPos()Gets the "pos" elementbooleanisSetCoordinates()True if has "coordinates" elementbooleanisSetPos()True if has "pos" elementvoidsetCoordinates(CoordinatesType coordinates)Sets the "coordinates" elementvoidsetPos(DirectPositionType pos)Sets the "pos" elementvoidunsetCoordinates()Unsets the "coordinates" elementvoidunsetPos()Unsets the "pos" element-
Methods inherited from interface net.opengis.gml.x32.AbstractGeometryType
getAxisLabels, getSrsDimension, getSrsName, getUomLabels, isSetAxisLabels, isSetSrsDimension, isSetSrsName, isSetUomLabels, setAxisLabels, setSrsDimension, setSrsName, setUomLabels, unsetAxisLabels, unsetSrsDimension, unsetSrsName, unsetUomLabels, xgetAxisLabels, xgetSrsDimension, xgetSrsName, xgetUomLabels, xsetAxisLabels, xsetSrsDimension, xsetSrsName, xsetUomLabels
-
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 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
-
-