Package com.mongodb.client.model.geojson
Class LineString
- java.lang.Object
-
- com.mongodb.client.model.geojson.Geometry
-
- com.mongodb.client.model.geojson.LineString
-
@Deprecated(since="2021-05-27") public final class LineString extends Geometry
Deprecated.Usage of this API is not supported in AEM as a Cloud Service.A representation of a GeoJSON LineString.- Since:
- 3.1
-
-
Constructor Summary
Constructors Constructor Description LineString(CoordinateReferenceSystem coordinateReferenceSystem, List<Position> coordinates)
Deprecated.Construct an instance with the given coordinates and coordinate reference system.LineString(List<Position> coordinates)
Deprecated.Construct an instance with the given coordinates.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(Object o)
Deprecated.List<Position>
getCoordinates()
Deprecated.Gets the GeoJSON coordinates of this LineString.GeoJsonObjectType
getType()
Deprecated.Gets the GeoJSON object type.int
hashCode()
Deprecated.String
toString()
Deprecated.-
Methods inherited from class com.mongodb.client.model.geojson.Geometry
getCoordinateReferenceSystem, toJson
-
-
-
-
Constructor Detail
-
LineString
public LineString(List<Position> coordinates)
Deprecated.Construct an instance with the given coordinates.- Parameters:
coordinates
- the coordinates
-
LineString
public LineString(@Nullable CoordinateReferenceSystem coordinateReferenceSystem, List<Position> coordinates)
Deprecated.Construct an instance with the given coordinates and coordinate reference system.- Parameters:
coordinateReferenceSystem
- the coordinate reference systemcoordinates
- the coordinates
-
-
Method Detail
-
getType
public GeoJsonObjectType getType()
Deprecated.Description copied from class:Geometry
Gets the GeoJSON object type.
-
getCoordinates
public List<Position> getCoordinates()
Deprecated.Gets the GeoJSON coordinates of this LineString.- Returns:
- the coordinates
-
-