public enum MediaJobRetry extends Enum<MediaJobRetry>
| Enum Constant and Description |
|---|
DO_NOT_RETRY
Issue needs to be investigated and then the job resubmitted with corrections or retried once the underlying issue has been corrected.
|
MAY_RETRY
Issue may be resolved after waiting for a period of time and resubmitting the same Job.
|
| Modifier and Type | Method and Description |
|---|---|
static MediaJobRetry |
fromString(String value)
Parses a serialized value to a MediaJobRetry instance.
|
String |
toString() |
static MediaJobRetry |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MediaJobRetry[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaJobRetry DO_NOT_RETRY
public static final MediaJobRetry MAY_RETRY
public static MediaJobRetry[] values()
for (MediaJobRetry c : MediaJobRetry.values()) System.out.println(c);
public static MediaJobRetry valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static MediaJobRetry fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<MediaJobRetry> /**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/