Package com.google.cloud.batch.v1
Interface JobNotification.MessageOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
JobNotification.Message,JobNotification.Message.Builder
- Enclosing class:
- JobNotification
public static interface JobNotification.MessageOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobStatus.StategetNewJobState()The new job state.intgetNewJobStateValue()The new job state.TaskStatus.StategetNewTaskState()The new task state.intgetNewTaskStateValue()The new task state.JobNotification.TypegetType()The message type.intgetTypeValue()The message type.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
The message type.
.google.cloud.batch.v1.JobNotification.Type type = 1;- Returns:
- The enum numeric value on the wire for type.
-
getType
JobNotification.Type getType()
The message type.
.google.cloud.batch.v1.JobNotification.Type type = 1;- Returns:
- The type.
-
getNewJobStateValue
int getNewJobStateValue()
The new job state.
.google.cloud.batch.v1.JobStatus.State new_job_state = 2;- Returns:
- The enum numeric value on the wire for newJobState.
-
getNewJobState
JobStatus.State getNewJobState()
The new job state.
.google.cloud.batch.v1.JobStatus.State new_job_state = 2;- Returns:
- The newJobState.
-
getNewTaskStateValue
int getNewTaskStateValue()
The new task state.
.google.cloud.batch.v1.TaskStatus.State new_task_state = 3;- Returns:
- The enum numeric value on the wire for newTaskState.
-
getNewTaskState
TaskStatus.State getNewTaskState()
The new task state.
.google.cloud.batch.v1.TaskStatus.State new_task_state = 3;- Returns:
- The newTaskState.
-
-