OutputFileUploadCondition Enum

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

public enum OutputFileUploadCondition
extends Enum<OutputFileUploadCondition>

Defines values for OutputFileUploadCondition.

Fields

TASK_COMPLETION

Upload the file(s) after the Task process exits, no matter what the exit code was.

TASK_FAILURE

Upload the file(s) only after the Task process exits with a nonzero exit code.

TASK_SUCCESS

Upload the file(s) only after the Task process exits with an exit code of 0.

Methods inherited from java.lang.Enum

Methods inherited from java.lang.Object

Methods

fromString(String value)

public static OutputFileUploadCondition fromString(String value)

Parses a serialized value to a OutputFileUploadCondition instance.

Parameters

value
String
the serialized value to parse.

Returns

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

toString()

public String toString()

Returns

Overrides
java.lang.Enum.toString()

valueOf(String name)

public static OutputFileUploadCondition valueOf(String name)

Parameters

name
String

Returns

values()

public static OutputFileUploadCondition[] values()

Returns

Applies to