Uses of Interface
org.citygml4j.model.gml.geometry.primitives.Point

Packages that use Point
org.citygml4j.builder.jaxb.marshal.gml   
org.citygml4j.builder.jaxb.unmarshal.gml   
org.citygml4j.factory   
org.citygml4j.factory.geometry   
org.citygml4j.impl.gml.geometry.primitives   
org.citygml4j.model.common.visitor   
org.citygml4j.model.gml.geometry.primitives   
org.citygml4j.util.walker   
 

Uses of Point in org.citygml4j.builder.jaxb.marshal.gml
 

Methods in org.citygml4j.builder.jaxb.marshal.gml with parameters of type Point
 PointType GMLMarshaller.marshalPoint(Point src)
           
 

Uses of Point in org.citygml4j.builder.jaxb.unmarshal.gml
 

Methods in org.citygml4j.builder.jaxb.unmarshal.gml that return Point
 Point GMLUnmarshaller.unmarshalPoint(PointType src)
           
 

Uses of Point in org.citygml4j.factory
 

Methods in org.citygml4j.factory that return Point
 Point GMLFactory.createPoint()
           
 

Methods in org.citygml4j.factory with parameters of type Point
 MultiPoint GMLFactory.createMultiPoint(Point... points)
           
 PointArrayProperty GMLFactory.createPointArrayProperty(Point... point)
           
 PointProperty GMLFactory.createPointProperty(Point point)
           
 PointRep GMLFactory.createPointRep(Point point)
           
 

Method parameters in org.citygml4j.factory with type arguments of type Point
 MultiPoint GMLFactory.createMultiPoint(java.util.List<Point> points)
           
 PointArrayProperty GMLFactory.createPointArrayProperty(java.util.List<Point> point)
           
 

Uses of Point in org.citygml4j.factory.geometry
 

Methods in org.citygml4j.factory.geometry that return Point
 Point GMLGeometryFactory.createPoint(double[] coordinates, int dim)
           
 Point GMLGeometryFactory.createPoint(java.util.List<java.lang.Double> coordinates, int dim)
           
 

Uses of Point in org.citygml4j.impl.gml.geometry.primitives
 

Classes in org.citygml4j.impl.gml.geometry.primitives that implement Point
 class PointImpl
           
 

Methods in org.citygml4j.impl.gml.geometry.primitives that return Point
 Point PointPropertyImpl.getPoint()
           
 

Methods in org.citygml4j.impl.gml.geometry.primitives that return types with arguments of type Point
 java.util.List<Point> PointArrayPropertyImpl.getPoint()
           
 

Methods in org.citygml4j.impl.gml.geometry.primitives with parameters of type Point
 void PointArrayPropertyImpl.addPoint(Point point)
           
 void PointPropertyImpl.setPoint(Point point)
           
 boolean PointArrayPropertyImpl.unsetPoint(Point point)
           
 

Method parameters in org.citygml4j.impl.gml.geometry.primitives with type arguments of type Point
 void PointArrayPropertyImpl.setPoint(java.util.List<Point> point)
           
 

Uses of Point in org.citygml4j.model.common.visitor
 

Methods in org.citygml4j.model.common.visitor with parameters of type Point
 T GeometryFunctor.apply(Point point)
           
 void GeometryVisitor.visit(Point point)
           
 

Uses of Point in org.citygml4j.model.gml.geometry.primitives
 

Methods in org.citygml4j.model.gml.geometry.primitives that return Point
 Point PointProperty.getPoint()
           
 

Methods in org.citygml4j.model.gml.geometry.primitives that return types with arguments of type Point
 java.util.List<Point> PointArrayProperty.getPoint()
           
 

Methods in org.citygml4j.model.gml.geometry.primitives with parameters of type Point
 void PointArrayProperty.addPoint(Point point)
           
 void PointProperty.setPoint(Point point)
           
 boolean PointArrayProperty.unsetPoint(Point point)
           
 

Method parameters in org.citygml4j.model.gml.geometry.primitives with type arguments of type Point
 void PointArrayProperty.setPoint(java.util.List<Point> point)
           
 

Uses of Point in org.citygml4j.util.walker
 

Methods in org.citygml4j.util.walker with parameters of type Point
 T GMLFunctionWalker.apply(Point point)
           
 T GeometryFunctionWalker.apply(Point point)
           
 void GMLWalker.visit(Point point)
           
 void GeometryWalker.visit(Point point)