Package net.opengis.gml
Interface CoordType
-
- All Superinterfaces:
org.apache.xmlbeans.XmlObject,org.apache.xmlbeans.XmlTokenSource
- All Known Implementing Classes:
CoordTypeImpl
public interface CoordType extends org.apache.xmlbeans.XmlObjectAn XML CoordType(@http://www.opengis.net/gml). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCoordType.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 BigDecimalgetX()Gets the "X" elementBigDecimalgetY()Gets the "Y" elementBigDecimalgetZ()Gets the "Z" elementbooleanisSetY()True if has "Y" elementbooleanisSetZ()True if has "Z" elementvoidsetX(BigDecimal x)Sets the "X" elementvoidsetY(BigDecimal y)Sets the "Y" elementvoidsetZ(BigDecimal z)Sets the "Z" elementvoidunsetY()Unsets the "Y" elementvoidunsetZ()Unsets the "Z" elementorg.apache.xmlbeans.XmlDecimalxgetX()Gets (as xml) the "X" elementorg.apache.xmlbeans.XmlDecimalxgetY()Gets (as xml) the "Y" elementorg.apache.xmlbeans.XmlDecimalxgetZ()Gets (as xml) the "Z" elementvoidxsetX(org.apache.xmlbeans.XmlDecimal x)Sets (as xml) the "X" elementvoidxsetY(org.apache.xmlbeans.XmlDecimal y)Sets (as xml) the "Y" elementvoidxsetZ(org.apache.xmlbeans.XmlDecimal z)Sets (as xml) the "Z" element-
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
-
getX
BigDecimal getX()
Gets the "X" element
-
xgetX
org.apache.xmlbeans.XmlDecimal xgetX()
Gets (as xml) the "X" element
-
setX
void setX(BigDecimal x)
Sets the "X" element
-
xsetX
void xsetX(org.apache.xmlbeans.XmlDecimal x)
Sets (as xml) the "X" element
-
getY
BigDecimal getY()
Gets the "Y" element
-
xgetY
org.apache.xmlbeans.XmlDecimal xgetY()
Gets (as xml) the "Y" element
-
isSetY
boolean isSetY()
True if has "Y" element
-
setY
void setY(BigDecimal y)
Sets the "Y" element
-
xsetY
void xsetY(org.apache.xmlbeans.XmlDecimal y)
Sets (as xml) the "Y" element
-
unsetY
void unsetY()
Unsets the "Y" element
-
getZ
BigDecimal getZ()
Gets the "Z" element
-
xgetZ
org.apache.xmlbeans.XmlDecimal xgetZ()
Gets (as xml) the "Z" element
-
isSetZ
boolean isSetZ()
True if has "Z" element
-
setZ
void setZ(BigDecimal z)
Sets the "Z" element
-
xsetZ
void xsetZ(org.apache.xmlbeans.XmlDecimal z)
Sets (as xml) the "Z" element
-
unsetZ
void unsetZ()
Unsets the "Z" element
-
-