public enum MediaJobErrorCode extends Enum<MediaJobErrorCode>
| Enum Constant and Description |
|---|
CONFIGURATION_UNSUPPORTED
There was a problem with the combination of input files and the configuration settings applied, fix the configuration settings and retry with the same input, or change input to match the configuration.
|
CONTENT_MALFORMED
There was a problem with the input content (for example: zero byte files, or corrupt/non-decodable files), check the input files.
|
CONTENT_UNSUPPORTED
There was a problem with the format of the input (not valid media file, or an unsupported file/codec), check the validity of the input files.
|
DOWNLOAD_NOT_ACCESSIBLE
While trying to download the input files, the files were not accessible, please check the availability of the source.
|
DOWNLOAD_TRANSIENT_ERROR
While trying to download the input files, there was an issue during transfer (storage service, network errors), see details and check your source.
|
SERVICE_ERROR
Fatal service error, please contact support.
|
SERVICE_TRANSIENT_ERROR
Transient error, please retry, if retry is unsuccessful, please contact support.
|
UPLOAD_NOT_ACCESSIBLE
While trying to upload the output files, the destination was not reachable, please check the availability of the destination.
|
UPLOAD_TRANSIENT_ERROR
While trying to upload the output files, there was an issue during transfer (storage service, network errors), see details and check your destination.
|
| Modifier and Type | Method and Description |
|---|---|
static MediaJobErrorCode |
fromString(String value)
Parses a serialized value to a MediaJobErrorCode instance.
|
String |
toString() |
static MediaJobErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MediaJobErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaJobErrorCode SERVICE_ERROR
public static final MediaJobErrorCode SERVICE_TRANSIENT_ERROR
public static final MediaJobErrorCode DOWNLOAD_NOT_ACCESSIBLE
public static final MediaJobErrorCode DOWNLOAD_TRANSIENT_ERROR
public static final MediaJobErrorCode UPLOAD_NOT_ACCESSIBLE
public static final MediaJobErrorCode UPLOAD_TRANSIENT_ERROR
public static final MediaJobErrorCode CONFIGURATION_UNSUPPORTED
public static final MediaJobErrorCode CONTENT_MALFORMED
public static final MediaJobErrorCode CONTENT_UNSUPPORTED
public static MediaJobErrorCode[] values()
for (MediaJobErrorCode c : MediaJobErrorCode.values()) System.out.println(c);
public static MediaJobErrorCode 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 MediaJobErrorCode fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<MediaJobErrorCode> /**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/