Enum AACEncError

    • Enum Constant Detail

      • AACENC_UNKNOWN

        public static final AACEncError AACENC_UNKNOWN
      • AACENC_INVALID_HANDLE

        public static final AACEncError AACENC_INVALID_HANDLE
      • AACENC_MEMORY_ERROR

        public static final AACEncError AACENC_MEMORY_ERROR
      • AACENC_UNSUPPORTED_PARAMETER

        public static final AACEncError AACENC_UNSUPPORTED_PARAMETER
      • AACENC_INVALID_CONFIG

        public static final AACEncError AACENC_INVALID_CONFIG
      • AACENC_INIT_ERROR

        public static final AACEncError AACENC_INIT_ERROR
      • AACENC_INIT_AAC_ERROR

        public static final AACEncError AACENC_INIT_AAC_ERROR
      • AACENC_INIT_SBR_ERROR

        public static final AACEncError AACENC_INIT_SBR_ERROR
      • AACENC_INIT_TP_ERROR

        public static final AACEncError AACENC_INIT_TP_ERROR
      • AACENC_INIT_META_ERROR

        public static final AACEncError AACENC_INIT_META_ERROR
      • AACENC_ENCODE_ERROR

        public static final AACEncError AACENC_ENCODE_ERROR
      • AACENC_ENCODE_EOF

        public static final AACEncError AACENC_ENCODE_EOF
    • Method Detail

      • values

        public static AACEncError[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (AACEncError c : AACEncError.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AACEncError valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • valueOf

        public static AACEncError valueOf​(int value)
        Match a AACEncError from a given numeric error code.
        Parameters:
        value - numeric library error code
        Returns:
        the matched library error descriptor