Package com.google.cloud.batch.v1alpha
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.State
getNewJobState()
The new job state.int
getNewJobStateValue()
The new job state.TaskStatus.State
getNewTaskState()
The new task state.int
getNewTaskStateValue()
The new task state.JobNotification.Type
getType()
The message type.int
getTypeValue()
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.v1alpha.JobNotification.Type type = 1;
- Returns:
- The enum numeric value on the wire for type.
-
getType
JobNotification.Type getType()
The message type.
.google.cloud.batch.v1alpha.JobNotification.Type type = 1;
- Returns:
- The type.
-
getNewJobStateValue
int getNewJobStateValue()
The new job state.
.google.cloud.batch.v1alpha.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.v1alpha.JobStatus.State new_job_state = 2;
- Returns:
- The newJobState.
-
getNewTaskStateValue
int getNewTaskStateValue()
The new task state.
.google.cloud.batch.v1alpha.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.v1alpha.TaskStatus.State new_task_state = 3;
- Returns:
- The newTaskState.
-
-