JobScheduleState Enum

  • java.lang.Object
    • java.lang.Enum<JobScheduleState>
      • com.microsoft.azure.batch.protocol.models.JobScheduleState

public enum JobScheduleState

Defines values for JobScheduleState.

Fields

ACTIVE

The job schedule is active and will create jobs as per its schedule.

COMPLETED

The schedule has terminated, either by reaching its end time or by the user terminating it explicitly.

DELETING

The user has requested that the schedule be deleted, but the delete operation is still in progress. The scheduler will not initiate any new jobs for this schedule, and will delete any existing jobs and tasks under the schedule, including any active job. The schedule will be deleted when all jobs and tasks under the schedule have been deleted.

DISABLED

The user has disabled the schedule. The scheduler will not initiate any new jobs will on this schedule, but any existing active job will continue to run.

TERMINATING

The schedule has no more work to do, or has been explicitly terminated by the user, but the termination operation is still in progress. The scheduler will not initiate any new jobs for this schedule, nor is any existing job active.

Methods

fromString(String value)

public static JobScheduleState fromString(String value)

Parses a serialized value to a JobScheduleState instance.

Parameters

value
String
the serialized value to parse.

Returns

the parsed JobScheduleState object, or null if unable to parse.

toString()

public String toString()

Returns

String

Applies to