Package com.cognite.client.dto
Interface PointCoordinatesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PointCoordinates,PointCoordinates.Builder
public interface PointCoordinatesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetCoordinates(int index)repeated double coordinates = 1;intgetCoordinatesCount()repeated double coordinates = 1;List<Double>getCoordinatesList()repeated double coordinates = 1;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCoordinatesList
List<Double> getCoordinatesList()
repeated double coordinates = 1;- Returns:
- A list containing the coordinates.
-
getCoordinatesCount
int getCoordinatesCount()
repeated double coordinates = 1;- Returns:
- The count of coordinates.
-
getCoordinates
double getCoordinates(int index)
repeated double coordinates = 1;- Parameters:
index- The index of the element to return.- Returns:
- The coordinates at the given index.
-
-