Interface ListInstructionsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListInstructionsResponse
,ListInstructionsResponse.Builder
public interface ListInstructionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Instruction
getInstructions(int index)
The list of Instructions to return.int
getInstructionsCount()
The list of Instructions to return.List<Instruction>
getInstructionsList()
The list of Instructions to return.InstructionOrBuilder
getInstructionsOrBuilder(int index)
The list of Instructions to return.List<? extends InstructionOrBuilder>
getInstructionsOrBuilderList()
The list of Instructions to return.String
getNextPageToken()
A token to retrieve next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token to retrieve next page of results.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getInstructionsList
List<Instruction> getInstructionsList()
The list of Instructions to return.
repeated .google.cloud.datalabeling.v1beta1.Instruction instructions = 1;
-
getInstructions
Instruction getInstructions(int index)
The list of Instructions to return.
repeated .google.cloud.datalabeling.v1beta1.Instruction instructions = 1;
-
getInstructionsCount
int getInstructionsCount()
The list of Instructions to return.
repeated .google.cloud.datalabeling.v1beta1.Instruction instructions = 1;
-
getInstructionsOrBuilderList
List<? extends InstructionOrBuilder> getInstructionsOrBuilderList()
The list of Instructions to return.
repeated .google.cloud.datalabeling.v1beta1.Instruction instructions = 1;
-
getInstructionsOrBuilder
InstructionOrBuilder getInstructionsOrBuilder(int index)
The list of Instructions to return.
repeated .google.cloud.datalabeling.v1beta1.Instruction instructions = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve next page of results.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token to retrieve next page of results.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-