Package com.google.dataflow.v1beta3
Interface ExecutionStageStateOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExecutionStageState,ExecutionStageState.Builder
public interface ExecutionStageStateOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.TimestampgetCurrentStateTime()The time at which the stage transitioned to this state.com.google.protobuf.TimestampOrBuildergetCurrentStateTimeOrBuilder()The time at which the stage transitioned to this state.StringgetExecutionStageName()The name of the execution stage.com.google.protobuf.ByteStringgetExecutionStageNameBytes()The name of the execution stage.JobStategetExecutionStageState()Executions stage states allow the same set of values as JobState.intgetExecutionStageStateValue()Executions stage states allow the same set of values as JobState.booleanhasCurrentStateTime()The time at which the stage transitioned to this state.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getExecutionStageName
String getExecutionStageName()
The name of the execution stage.
string execution_stage_name = 1;- Returns:
- The executionStageName.
-
getExecutionStageNameBytes
com.google.protobuf.ByteString getExecutionStageNameBytes()
The name of the execution stage.
string execution_stage_name = 1;- Returns:
- The bytes for executionStageName.
-
getExecutionStageStateValue
int getExecutionStageStateValue()
Executions stage states allow the same set of values as JobState.
.google.dataflow.v1beta3.JobState execution_stage_state = 2;- Returns:
- The enum numeric value on the wire for executionStageState.
-
getExecutionStageState
JobState getExecutionStageState()
Executions stage states allow the same set of values as JobState.
.google.dataflow.v1beta3.JobState execution_stage_state = 2;- Returns:
- The executionStageState.
-
hasCurrentStateTime
boolean hasCurrentStateTime()
The time at which the stage transitioned to this state.
.google.protobuf.Timestamp current_state_time = 3;- Returns:
- Whether the currentStateTime field is set.
-
getCurrentStateTime
com.google.protobuf.Timestamp getCurrentStateTime()
The time at which the stage transitioned to this state.
.google.protobuf.Timestamp current_state_time = 3;- Returns:
- The currentStateTime.
-
getCurrentStateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCurrentStateTimeOrBuilder()
The time at which the stage transitioned to this state.
.google.protobuf.Timestamp current_state_time = 3;
-
-