次の方法で共有


JobScheduleState Enum

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

public enum JobScheduleState
extends Enum<JobScheduleState>

Defines values for JobScheduleState.

Fields

ACTIVE

The Job Schedule is active and will create Jobs as per its schedule.

COMPLETED

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

DELETING

The user has requested that the Job Schedule be deleted, but the delete operation is still in progress.

DISABLED

The user has disabled the Job Schedule.

TERMINATING

The Job Schedule has no more work to do, or has been explicitly terminated by the user, but the termination operation is still in progress.

Methods inherited from java.lang.Enum

Methods inherited from java.lang.Object

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

Overrides
java.lang.Enum.toString()

valueOf(String name)

public static JobScheduleState valueOf(String name)

Parameters

name
String

Returns

values()

public static JobScheduleState[] values()

Returns

Applies to