Interface ListFilesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListFilesResponse
,ListFilesResponse.Builder
public interface ListFilesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description File
getFiles(int index)
The files returned.int
getFilesCount()
The files returned.List<File>
getFilesList()
The files returned.FileOrBuilder
getFilesOrBuilder(int index)
The files returned.List<? extends FileOrBuilder>
getFilesOrBuilderList()
The files returned.String
getNextPageToken()
The token to retrieve the next page of files, or empty if there are no more files to return.com.google.protobuf.ByteString
getNextPageTokenBytes()
The token to retrieve the next page of files, or empty if there are no more files to return.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFilesList
List<File> getFilesList()
The files returned.
repeated .google.devtools.artifactregistry.v1.File files = 1;
-
getFiles
File getFiles(int index)
The files returned.
repeated .google.devtools.artifactregistry.v1.File files = 1;
-
getFilesCount
int getFilesCount()
The files returned.
repeated .google.devtools.artifactregistry.v1.File files = 1;
-
getFilesOrBuilderList
List<? extends FileOrBuilder> getFilesOrBuilderList()
The files returned.
repeated .google.devtools.artifactregistry.v1.File files = 1;
-
getFilesOrBuilder
FileOrBuilder getFilesOrBuilder(int index)
The files returned.
repeated .google.devtools.artifactregistry.v1.File files = 1;
-
getNextPageToken
String getNextPageToken()
The token to retrieve the next page of files, or empty if there are no more files to return.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The token to retrieve the next page of files, or empty if there are no more files to return.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-