Package com.google.dataflow.v1beta3
Interface JobExecutionStageInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
JobExecutionStageInfo,JobExecutionStageInfo.Builder
public interface JobExecutionStageInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetStepName(int index)The steps associated with the execution stage.com.google.protobuf.ByteStringgetStepNameBytes(int index)The steps associated with the execution stage.intgetStepNameCount()The steps associated with the execution stage.List<String>getStepNameList()The steps associated with the execution stage.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStepNameList
List<String> getStepNameList()
The steps associated with the execution stage. Note that stages may have several steps, and that a given step might be run by more than one stage.
repeated string step_name = 1;- Returns:
- A list containing the stepName.
-
getStepNameCount
int getStepNameCount()
The steps associated with the execution stage. Note that stages may have several steps, and that a given step might be run by more than one stage.
repeated string step_name = 1;- Returns:
- The count of stepName.
-
getStepName
String getStepName(int index)
The steps associated with the execution stage. Note that stages may have several steps, and that a given step might be run by more than one stage.
repeated string step_name = 1;- Parameters:
index- The index of the element to return.- Returns:
- The stepName at the given index.
-
getStepNameBytes
com.google.protobuf.ByteString getStepNameBytes(int index)
The steps associated with the execution stage. Note that stages may have several steps, and that a given step might be run by more than one stage.
repeated string step_name = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the stepName at the given index.
-
-