Class Point
- java.lang.Object
-
- org.citygml4j.model.gml.base.AbstractGML
-
- org.citygml4j.model.gml.geometry.AbstractGeometry
-
- org.citygml4j.model.gml.geometry.primitives.AbstractGeometricPrimitive
-
- org.citygml4j.model.gml.geometry.primitives.Point
-
- All Implemented Interfaces:
java.io.Serializable
,Associable
,ModelObject
,Child
,Copyable
,StandardObjectProperties
,SRSInformationGroup
,SRSReferenceGroup
,GML
public class Point extends AbstractGeometricPrimitive
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Point()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
accept(GeometryFunctor<T> visitor)
void
accept(GeometryVisitor visitor)
<T> T
accept(GMLFunctor<T> visitor)
void
accept(GMLVisitor visitor)
BoundingBox
calcBoundingBox()
java.lang.Object
copy(CopyBuilder copyBuilder)
java.lang.Object
copyTo(java.lang.Object target, CopyBuilder copyBuilder)
Coord
getCoord()
Coordinates
getCoordinates()
GMLClass
getGMLClass()
DirectPosition
getPos()
boolean
isSetCoord()
boolean
isSetCoordinates()
boolean
isSetPos()
void
setCoord(Coord coord)
void
setCoordinates(Coordinates coordinates)
void
setPos(DirectPosition pos)
java.util.List<java.lang.Double>
toList3d()
void
unsetCoord()
void
unsetCoordinates()
void
unsetPos()
-
Methods inherited from class org.citygml4j.model.gml.geometry.AbstractGeometry
addAxisLabel, addUomLabel, getAxisLabels, getGid, getInheritedSrsName, getSrsDimension, getSrsName, getUomLabels, isSetAxisLabels, isSetGid, isSetSrsDimension, isSetSrsName, isSetUomLabels, setAxisLabels, setGid, setSrsDimension, setSrsName, setUomLabels, unsetAxisLabels, unsetAxisLabels, unsetGid, unsetSrsDimension, unsetSrsName, unsetUomLabels, unsetUomLabels
-
Methods inherited from class org.citygml4j.model.gml.base.AbstractGML
addMetaDataProperty, addName, getDescription, getId, getLocalProperty, getMetaDataProperty, getName, getParent, hasLocalProperty, isSetDescription, isSetId, isSetMetaDataProperty, isSetName, isSetParent, setDescription, setId, setLocalProperty, setMetaDataProperty, setName, setParent, unsetDescription, unsetId, unsetLocalProperty, unsetMetaDataProperty, unsetMetaDataProperty, unsetName, unsetName, unsetParent
-
-
-
-
Method Detail
-
calcBoundingBox
public BoundingBox calcBoundingBox()
- Specified by:
calcBoundingBox
in classAbstractGeometry
-
getGMLClass
public GMLClass getGMLClass()
- Specified by:
getGMLClass
in interfaceGML
- Overrides:
getGMLClass
in classAbstractGML
-
getCoord
public Coord getCoord()
-
getCoordinates
public Coordinates getCoordinates()
-
getPos
public DirectPosition getPos()
-
isSetCoord
public boolean isSetCoord()
-
isSetCoordinates
public boolean isSetCoordinates()
-
isSetPos
public boolean isSetPos()
-
setCoord
public void setCoord(Coord coord)
-
setCoordinates
public void setCoordinates(Coordinates coordinates)
-
setPos
public void setPos(DirectPosition pos)
-
toList3d
public java.util.List<java.lang.Double> toList3d()
-
unsetCoord
public void unsetCoord()
-
unsetCoordinates
public void unsetCoordinates()
-
unsetPos
public void unsetPos()
-
copyTo
public java.lang.Object copyTo(java.lang.Object target, CopyBuilder copyBuilder)
- Specified by:
copyTo
in interfaceCopyable
- Overrides:
copyTo
in classAbstractGeometry
-
copy
public java.lang.Object copy(CopyBuilder copyBuilder)
-
accept
public void accept(GeometryVisitor visitor)
- Specified by:
accept
in classAbstractGeometry
-
accept
public <T> T accept(GeometryFunctor<T> visitor)
- Specified by:
accept
in classAbstractGeometry
-
accept
public void accept(GMLVisitor visitor)
- Specified by:
accept
in classAbstractGML
-
accept
public <T> T accept(GMLFunctor<T> visitor)
- Specified by:
accept
in classAbstractGML
-
-