PoolState Enum

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

public enum PoolState
extends Enum<PoolState>

Defines values for PoolState.

Fields

ACTIVE

The Pool is available to run Tasks subject to the availability of Compute Nodes.

DELETING

The user has requested that the Pool be deleted, but the delete operation has not yet completed.

Methods inherited from java.lang.Enum

Methods inherited from java.lang.Object

Methods

fromString(String value)

public static PoolState fromString(String value)

Parses a serialized value to a PoolState instance.

Parameters

value
String
the serialized value to parse.

Returns

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

toString()

public String toString()

Returns

Overrides
java.lang.Enum.toString()

valueOf(String name)

public static PoolState valueOf(String name)

Parameters

name
String

Returns

values()

public static PoolState[] values()

Returns

Applies to