Package io.grafeas.v1beta1
Interface ListNotesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListNotesResponse,ListNotesResponse.Builder
public interface ListNotesResponseOrBuilder 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.NotegetNotes(int index)The notes requested.intgetNotesCount()The notes requested.List<Note>getNotesList()The notes requested.NoteOrBuildergetNotesOrBuilder(int index)The notes requested.List<? extends NoteOrBuilder>getNotesOrBuilderList()The notes requested.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNotesList
List<Note> getNotesList()
The notes requested.
repeated .grafeas.v1beta1.Note notes = 1;
-
getNotes
Note getNotes(int index)
The notes requested.
repeated .grafeas.v1beta1.Note notes = 1;
-
getNotesCount
int getNotesCount()
The notes requested.
repeated .grafeas.v1beta1.Note notes = 1;
-
getNotesOrBuilderList
List<? extends NoteOrBuilder> getNotesOrBuilderList()
The notes requested.
repeated .grafeas.v1beta1.Note notes = 1;
-
getNotesOrBuilder
NoteOrBuilder getNotesOrBuilder(int index)
The notes requested.
repeated .grafeas.v1beta1.Note notes = 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.
-
-