Interface ListProcessesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListProcessesResponse,ListProcessesResponse.Builder
public interface ListProcessesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()The token to specify as `page_token` in the next call to get the next page.com.google.protobuf.ByteStringgetNextPageTokenBytes()The token to specify as `page_token` in the next call to get the next page.ProcessgetProcesses(int index)The processes from the specified project and location.intgetProcessesCount()The processes from the specified project and location.List<Process>getProcessesList()The processes from the specified project and location.ProcessOrBuildergetProcessesOrBuilder(int index)The processes from the specified project and location.List<? extends ProcessOrBuilder>getProcessesOrBuilderList()The processes from the specified project and location.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProcessesList
List<Process> getProcessesList()
The processes from the specified project and location.
repeated .google.cloud.datacatalog.lineage.v1.Process processes = 1;
-
getProcesses
Process getProcesses(int index)
The processes from the specified project and location.
repeated .google.cloud.datacatalog.lineage.v1.Process processes = 1;
-
getProcessesCount
int getProcessesCount()
The processes from the specified project and location.
repeated .google.cloud.datacatalog.lineage.v1.Process processes = 1;
-
getProcessesOrBuilderList
List<? extends ProcessOrBuilder> getProcessesOrBuilderList()
The processes from the specified project and location.
repeated .google.cloud.datacatalog.lineage.v1.Process processes = 1;
-
getProcessesOrBuilder
ProcessOrBuilder getProcessesOrBuilder(int index)
The processes from the specified project and location.
repeated .google.cloud.datacatalog.lineage.v1.Process processes = 1;
-
getNextPageToken
String getNextPageToken()
The token to specify as `page_token` in the next call to get the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The token to specify as `page_token` in the next call to get the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-