Uses of Class
net.sf.eBusx.geo.GeoObject
-
Packages that use GeoObject Package Description net.sf.eBusx.geo This package defineseBus message fields
implementing GeoJSON data types as defined in GeoJSON specification.. -
-
Uses of GeoObject in net.sf.eBusx.geo
Classes in net.sf.eBusx.geo with type parameters of type GeoObject Modifier and Type Class Description static class
GeoObject.GeoBuilder<F extends GeoObject,B extends GeoObject.GeoBuilder<F,?>>
Base class for all GeoJSON object builders.Subclasses of GeoObject in net.sf.eBusx.geo Modifier and Type Class Description class
GeoCircle
Defines a GeoJSON circle by the center point, radius, and radius units.class
GeoCollection
A collection of GeoJSON objects of different types.class
GeoEllipse
Defines a GeoJSON ellipse by the center point, major and minor axes, and degrees of rotation with axis units and rotation units.class
GeoLineString
Array of two or more positions.class
GeoMultiLineString
Contains zero or more GeoJSON line strings.class
GeoMultiPoint
ContainsPosition
array which may be empty.class
GeoMultiPolygon
Contains zero or more GeoJSON polygons.class
GeoPoint
Contains a single GeoJSONposition
.class
GeoPolygon
A polygon is one or more linear rings and a linear ring is aLineString
meeting the following constraints: Has four or more closed positions.Fields in net.sf.eBusx.geo declared as GeoObject Modifier and Type Field Description GeoObject[]
GeoCollection. geometries
GeoJSON objects collection.Methods in net.sf.eBusx.geo that return types with arguments of type GeoObject Modifier and Type Method Description java.lang.Class<? extends GeoObject>
GeoObject.GeoType. jsonClass()
Returns GeoJSON class.Methods in net.sf.eBusx.geo with parameters of type GeoObject Modifier and Type Method Description GeoCollection.Builder
GeoCollection.Builder. add(GeoObject geometry)
Appends geometry to geometries list.GeoCollection.Builder
GeoCollection.Builder. addAll(GeoObject[] geometries)
Appends geometries array to geometries list.GeoCollection.Builder
GeoCollection.Builder. geometries(GeoObject[] geometries)
Sets geometries list to given array.Method parameters in net.sf.eBusx.geo with type arguments of type GeoObject Modifier and Type Method Description GeoCollection.Builder
GeoCollection.Builder. addAll(java.util.Collection<GeoObject> geometries)
Appends geometries collection to geometries list.
-