Package io.grafeas.v1beta1
Interface ListNoteOccurrencesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListNoteOccurrencesResponse,ListNoteOccurrencesResponse.Builder
public interface ListNoteOccurrencesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()Token to provide to skip to a particular spot in the list.com.google.protobuf.ByteStringgetNextPageTokenBytes()Token to provide to skip to a particular spot in the list.OccurrencegetOccurrences(int index)The occurrences attached to the specified note.intgetOccurrencesCount()The occurrences attached to the specified note.List<Occurrence>getOccurrencesList()The occurrences attached to the specified note.OccurrenceOrBuildergetOccurrencesOrBuilder(int index)The occurrences attached to the specified note.List<? extends OccurrenceOrBuilder>getOccurrencesOrBuilderList()The occurrences attached to the specified note.-
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 attached to the specified note.
repeated .grafeas.v1beta1.Occurrence occurrences = 1;
-
getOccurrences
Occurrence getOccurrences(int index)
The occurrences attached to the specified note.
repeated .grafeas.v1beta1.Occurrence occurrences = 1;
-
getOccurrencesCount
int getOccurrencesCount()
The occurrences attached to the specified note.
repeated .grafeas.v1beta1.Occurrence occurrences = 1;
-
getOccurrencesOrBuilderList
List<? extends OccurrenceOrBuilder> getOccurrencesOrBuilderList()
The occurrences attached to the specified note.
repeated .grafeas.v1beta1.Occurrence occurrences = 1;
-
getOccurrencesOrBuilder
OccurrenceOrBuilder getOccurrencesOrBuilder(int index)
The occurrences attached to the specified note.
repeated .grafeas.v1beta1.Occurrence occurrences = 1;
-
getNextPageToken
String getNextPageToken()
Token to provide to skip to a particular spot in the list.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to provide to skip to a particular spot in the list.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-