Package io.grafeas.v1beta1
Interface ListOccurrencesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListOccurrencesResponse,ListOccurrencesResponse.Builder
public interface ListOccurrencesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()The next pagination token in the list response.com.google.protobuf.ByteStringgetNextPageTokenBytes()The next pagination token in the list response.OccurrencegetOccurrences(int index)The occurrences requested.intgetOccurrencesCount()The occurrences requested.List<Occurrence>getOccurrencesList()The occurrences requested.OccurrenceOrBuildergetOccurrencesOrBuilder(int index)The occurrences requested.List<? extends OccurrenceOrBuilder>getOccurrencesOrBuilderList()The occurrences requested.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getOccurrencesList
List<Occurrence> getOccurrencesList()
The occurrences requested.
repeated .grafeas.v1beta1.Occurrence occurrences = 1;
-
getOccurrences
Occurrence getOccurrences(int index)
The occurrences requested.
repeated .grafeas.v1beta1.Occurrence occurrences = 1;
-
getOccurrencesCount
int getOccurrencesCount()
The occurrences requested.
repeated .grafeas.v1beta1.Occurrence occurrences = 1;
-
getOccurrencesOrBuilderList
List<? extends OccurrenceOrBuilder> getOccurrencesOrBuilderList()
The occurrences requested.
repeated .grafeas.v1beta1.Occurrence occurrences = 1;
-
getOccurrencesOrBuilder
OccurrenceOrBuilder getOccurrencesOrBuilder(int index)
The occurrences requested.
repeated .grafeas.v1beta1.Occurrence occurrences = 1;
-
getNextPageToken
String getNextPageToken()
The next pagination token in the list response. It should be used as `page_token` for the following request. An empty value means no more results.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The next pagination token in the list response. It should be used as `page_token` for the following request. An empty value means no more results.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-