Interface BoundingPolyOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BoundingPoly
,BoundingPoly.Builder
public interface BoundingPolyOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vertex
getVertices(int index)
The bounding polygon vertices.int
getVerticesCount()
The bounding polygon vertices.List<Vertex>
getVerticesList()
The bounding polygon vertices.VertexOrBuilder
getVerticesOrBuilder(int index)
The bounding polygon vertices.List<? extends VertexOrBuilder>
getVerticesOrBuilderList()
The bounding polygon vertices.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVerticesList
List<Vertex> getVerticesList()
The bounding polygon vertices.
repeated .google.cloud.datalabeling.v1beta1.Vertex vertices = 1;
-
getVertices
Vertex getVertices(int index)
The bounding polygon vertices.
repeated .google.cloud.datalabeling.v1beta1.Vertex vertices = 1;
-
getVerticesCount
int getVerticesCount()
The bounding polygon vertices.
repeated .google.cloud.datalabeling.v1beta1.Vertex vertices = 1;
-
getVerticesOrBuilderList
List<? extends VertexOrBuilder> getVerticesOrBuilderList()
The bounding polygon vertices.
repeated .google.cloud.datalabeling.v1beta1.Vertex vertices = 1;
-
getVerticesOrBuilder
VertexOrBuilder getVerticesOrBuilder(int index)
The bounding polygon vertices.
repeated .google.cloud.datalabeling.v1beta1.Vertex vertices = 1;
-
-