Enum MediaJobErrorCode

java.lang.Object
java.lang.Enum<MediaJobErrorCode>
com.azure.messaging.eventgrid.systemevents.MediaJobErrorCode
All Implemented Interfaces:
Serializable, Comparable<MediaJobErrorCode>, java.lang.constant.Constable

public enum MediaJobErrorCode extends Enum<MediaJobErrorCode>
Error code describing the error.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    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.
    There was a problem with the input content (for example: zero byte files, or corrupt/non-decodable files), check the input files.
    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.
    While trying to download the input files, the files were not accessible, please check the availability of the source.
    While trying to download the input files, there was an issue during transfer (storage service, network errors), see details and check your source.
    There is an error verifying to the account identity.
    Fatal service error, please contact support.
    Transient error, please retry, if retry is unsuccessful, please contact support.
    While trying to upload the output files, the destination was not reachable, please check the availability of the destination.
    While trying to upload the output files, there was an issue during transfer (storage service, network errors), see details and check your destination.
  • Method Summary

    Modifier and Type
    Method
    Description
    Parses a serialized value to a MediaJobErrorCode instance.
    Returns the enum constant of this type with the specified name.
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • SERVICE_ERROR

      public static final MediaJobErrorCode SERVICE_ERROR
      Fatal service error, please contact support.
    • SERVICE_TRANSIENT_ERROR

      public static final MediaJobErrorCode SERVICE_TRANSIENT_ERROR
      Transient error, please retry, if retry is unsuccessful, please contact support.
    • DOWNLOAD_NOT_ACCESSIBLE

      public static final MediaJobErrorCode 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

      public static final MediaJobErrorCode 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.
    • UPLOAD_NOT_ACCESSIBLE

      public static final MediaJobErrorCode 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

      public static final MediaJobErrorCode 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.
    • CONFIGURATION_UNSUPPORTED

      public static final MediaJobErrorCode 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

      public static final MediaJobErrorCode 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

      public static final MediaJobErrorCode 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.
    • IDENTITY_UNSUPPORTED

      public static final MediaJobErrorCode IDENTITY_UNSUPPORTED
      There is an error verifying to the account identity. Check and fix the identity configurations and retry. If unsuccessful, please contact support.
  • Method Details

    • values

      public static MediaJobErrorCode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static MediaJobErrorCode valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • fromString

      public static MediaJobErrorCode fromString(String value)
      Parses a serialized value to a MediaJobErrorCode instance.
      Parameters:
      value - the serialized value to parse.
      Returns:
      the parsed MediaJobErrorCode object, or null if unable to parse.
    • toString

      public String toString()
      Overrides:
      toString in class Enum<MediaJobErrorCode>