Uses of Class
com.cognite.client.dto.geo.Point
-
Packages that use Point Package Description com.cognite.client.dto.geo com.cognite.client.util.geo -
-
Uses of Point in com.cognite.client.dto.geo
Methods in com.cognite.client.dto.geo that return Point Modifier and Type Method Description PointPoint.Builder. build()PointPoint.Builder. buildPartial()PointLineString.Builder. getCoordinates(int index)repeated .com.cognite.client.dto.geo.Point coordinates = 1;PointLineString. getCoordinates(int index)repeated .com.cognite.client.dto.geo.Point coordinates = 1;PointLineStringOrBuilder. getCoordinates(int index)repeated .com.cognite.client.dto.geo.Point coordinates = 1;PointMultiPoint.Builder. getCoordinates(int index)repeated .com.cognite.client.dto.geo.Point coordinates = 1;PointMultiPoint. getCoordinates(int index)repeated .com.cognite.client.dto.geo.Point coordinates = 1;PointMultiPointOrBuilder. getCoordinates(int index)repeated .com.cognite.client.dto.geo.Point coordinates = 1;static PointPoint. getDefaultInstance()PointPoint.Builder. getDefaultInstanceForType()PointPoint. getDefaultInstanceForType()PointGeometry.Builder. getPoint().com.cognite.client.dto.geo.Point point = 1;PointGeometry. getPoint().com.cognite.client.dto.geo.Point point = 1;PointGeometryOrBuilder. getPoint().com.cognite.client.dto.geo.Point point = 1;static PointPoint. parseDelimitedFrom(InputStream input)static PointPoint. parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)static PointPoint. parseFrom(byte[] data)static PointPoint. parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)static PointPoint. parseFrom(com.google.protobuf.ByteString data)static PointPoint. parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)static PointPoint. parseFrom(com.google.protobuf.CodedInputStream input)static PointPoint. parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)static PointPoint. parseFrom(InputStream input)static PointPoint. parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)static PointPoint. parseFrom(ByteBuffer data)static PointPoint. parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)Methods in com.cognite.client.dto.geo that return types with arguments of type Point Modifier and Type Method Description List<Point>LineString.Builder. getCoordinatesList()repeated .com.cognite.client.dto.geo.Point coordinates = 1;List<Point>LineString. getCoordinatesList()repeated .com.cognite.client.dto.geo.Point coordinates = 1;List<Point>LineStringOrBuilder. getCoordinatesList()repeated .com.cognite.client.dto.geo.Point coordinates = 1;List<Point>MultiPoint.Builder. getCoordinatesList()repeated .com.cognite.client.dto.geo.Point coordinates = 1;List<Point>MultiPoint. getCoordinatesList()repeated .com.cognite.client.dto.geo.Point coordinates = 1;List<Point>MultiPointOrBuilder. getCoordinatesList()repeated .com.cognite.client.dto.geo.Point coordinates = 1;com.google.protobuf.Parser<Point>Point. getParserForType()static com.google.protobuf.Parser<Point>Point. parser()Methods in com.cognite.client.dto.geo with parameters of type Point Modifier and Type Method Description LineString.BuilderLineString.Builder. addCoordinates(int index, Point value)repeated .com.cognite.client.dto.geo.Point coordinates = 1;LineString.BuilderLineString.Builder. addCoordinates(Point value)repeated .com.cognite.client.dto.geo.Point coordinates = 1;MultiPoint.BuilderMultiPoint.Builder. addCoordinates(int index, Point value)repeated .com.cognite.client.dto.geo.Point coordinates = 1;MultiPoint.BuilderMultiPoint.Builder. addCoordinates(Point value)repeated .com.cognite.client.dto.geo.Point coordinates = 1;Point.BuilderPoint.Builder. mergeFrom(Point other)Geometry.BuilderGeometry.Builder. mergePoint(Point value).com.cognite.client.dto.geo.Point point = 1;static Point.BuilderPoint. newBuilder(Point prototype)LineString.BuilderLineString.Builder. setCoordinates(int index, Point value)repeated .com.cognite.client.dto.geo.Point coordinates = 1;MultiPoint.BuilderMultiPoint.Builder. setCoordinates(int index, Point value)repeated .com.cognite.client.dto.geo.Point coordinates = 1;Geometry.BuilderGeometry.Builder. setPoint(Point value).com.cognite.client.dto.geo.Point point = 1;Method parameters in com.cognite.client.dto.geo with type arguments of type Point Modifier and Type Method Description LineString.BuilderLineString.Builder. addAllCoordinates(Iterable<? extends Point> values)repeated .com.cognite.client.dto.geo.Point coordinates = 1;MultiPoint.BuilderMultiPoint.Builder. addAllCoordinates(Iterable<? extends Point> values)repeated .com.cognite.client.dto.geo.Point coordinates = 1; -
Uses of Point in com.cognite.client.util.geo
Methods in com.cognite.client.util.geo that return Point Modifier and Type Method Description static PointPoints. of(double[] coordinates)Create aPointobject based on longitude (easting), latitude (northing) and (optional) elevation coordinates.static PointPoints. of(double lon, double lat)Create aPointobject based on longitude (easting) and latitude (northing) coordinates.static PointPoints. of(double lon, double lat, double elevation)Create aPointobject based on longitude (easting), latitude (northing) and elevation coordinates.Methods in com.cognite.client.util.geo with parameters of type Point Modifier and Type Method Description static GeometryGeometries. of(Point coordinates)static LineStringLineStrings. of(Point... points)Create aLineStringobject based on a set of geoPoints.static MultiPointMultiPoints. of(Point... points)Create aMultiPointobject based on a set of geoPoints.Method parameters in com.cognite.client.util.geo with type arguments of type Point Modifier and Type Method Description static LineStringLineStrings. of(List<Point> points)Create aLineStringobject based on a set of geoPoints.static MultiPointMultiPoints. of(List<Point> points)Create aMultiPointobject based on a set of geoPoints.
-