Uses of Class
net.sf.eBusx.geo.Position
-
Packages that use Position Package Description net.sf.eBusx.geo This package defineseBus message fields
implementing GeoJSON data types as defined in GeoJSON specification.. -
-
Uses of Position in net.sf.eBusx.geo
Fields in net.sf.eBusx.geo declared as Position Modifier and Type Field Description Position
GeoPoint. position
Single position containing the latitude, longitude, and (optionally) elevation.Position[]
GeoMultiPoint. positions
Positions contained in this multi-point GeoJSON object.Position[]
LineString. positions
The multiple points defining this line string.Methods in net.sf.eBusx.geo that return Position Modifier and Type Method Description protected Position
Position.Builder. buildImpl()
Returns a new position instance based on this builder's settings.Methods in net.sf.eBusx.geo with parameters of type Position Modifier and Type Method Description GeoMultiPoint.Builder
GeoMultiPoint.Builder. add(Position pos)
Appends position to positions list.LineString.Builder
LineString.Builder. add(Position pos)
Appends position to positions list.GeoMultiPoint.Builder
GeoMultiPoint.Builder. addAll(Position[] positions)
Appends position array to positions list.LineString.Builder
LineString.Builder. addAll(Position[] positions)
Appends position array to positions list.GeoPoint.Builder
GeoPoint.Builder. position(Position position)
Sets GeoJSON position.GeoMultiPoint.Builder
GeoMultiPoint.Builder. positions(Position[] positions)
Sets positions list to the given position values.LineString.Builder
LineString.Builder. positions(Position[] positions)
Sets positions list to the given position values.Method parameters in net.sf.eBusx.geo with type arguments of type Position Modifier and Type Method Description GeoMultiPoint.Builder
GeoMultiPoint.Builder. addAll(java.util.Collection<Position> positions)
Appends position collection to positions list.LineString.Builder
LineString.Builder. addAll(java.util.Collection<Position> positions)
Appends position collection to positions list.
-