Uses of Class
org.citygml4j.model.gml.geometry.primitives.Coord

Packages that use Coord
org.citygml4j.builder.jaxb.marshal.gml   
org.citygml4j.builder.jaxb.unmarshal.gml   
org.citygml4j.model.gml.geometry.primitives   
 

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

Methods in org.citygml4j.builder.jaxb.marshal.gml with parameters of type Coord
 CoordType GMLMarshaller.marshalCoord(Coord src)
           
 

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

Methods in org.citygml4j.builder.jaxb.unmarshal.gml that return Coord
 Coord GMLUnmarshaller.unmarshalCoord(CoordType src)
           
 

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

Methods in org.citygml4j.model.gml.geometry.primitives that return Coord
 Coord PosOrPointPropertyOrPointRepOrCoord.getCoord()
           
 Coord Point.getCoord()
           
 

Methods in org.citygml4j.model.gml.geometry.primitives that return types with arguments of type Coord
 java.util.List<Coord> LinearRing.getCoord()
           
 java.util.List<Coord> Envelope.getCoord()
           
 

Methods in org.citygml4j.model.gml.geometry.primitives with parameters of type Coord
 void LineString.addCoord(Coord coord)
           
 void LinearRing.addCoord(Coord coord)
           
 void Envelope.addCoord(Coord coord)
           
 void PosOrPointPropertyOrPointRepOrCoord.setCoord(Coord coord)
           
 void Point.setCoord(Coord coord)
           
 boolean LineString.unsetCoord(Coord coord)
           
 boolean Envelope.unsetCoord(Coord coord)
           
 

Method parameters in org.citygml4j.model.gml.geometry.primitives with type arguments of type Coord
 void LinearRing.setCoord(java.util.List<Coord> coord)
           
 void Envelope.setCoord(java.util.List<Coord> coord)
           
 

Constructors in org.citygml4j.model.gml.geometry.primitives with parameters of type Coord
PosOrPointPropertyOrPointRepOrCoord(Coord coord)