Enum charls.jpegls_errc

    • Enum Constant Detail

      • parameter_value_not_supported

        public static final charls.jpegls_errc parameter_value_not_supported
      • color_transform_not_supported

        public static final charls.jpegls_errc color_transform_not_supported
      • jpegls_preset_extended_parameter_type_not_supported

        public static final charls.jpegls_errc jpegls_preset_extended_parameter_type_not_supported
      • jpeg_marker_start_byte_not_found

        public static final charls.jpegls_errc jpeg_marker_start_byte_not_found
      • start_of_image_marker_not_found

        public static final charls.jpegls_errc start_of_image_marker_not_found
      • unknown_jpeg_marker_found

        public static final charls.jpegls_errc unknown_jpeg_marker_found
      • unexpected_start_of_scan_marker

        public static final charls.jpegls_errc unexpected_start_of_scan_marker
      • invalid_marker_segment_size

        public static final charls.jpegls_errc invalid_marker_segment_size
      • duplicate_start_of_image_marker

        public static final charls.jpegls_errc duplicate_start_of_image_marker
      • duplicate_start_of_frame_marker

        public static final charls.jpegls_errc duplicate_start_of_frame_marker
      • duplicate_component_id_in_sof_segment

        public static final charls.jpegls_errc duplicate_component_id_in_sof_segment
      • unexpected_end_of_image_marker

        public static final charls.jpegls_errc unexpected_end_of_image_marker
      • invalid_jpegls_preset_parameter_type

        public static final charls.jpegls_errc invalid_jpegls_preset_parameter_type
      • missing_end_of_spiff_directory

        public static final charls.jpegls_errc missing_end_of_spiff_directory
      • unexpected_restart_marker

        public static final charls.jpegls_errc unexpected_restart_marker
      • restart_marker_not_found

        public static final charls.jpegls_errc restart_marker_not_found
      • end_of_image_marker_not_found

        public static final charls.jpegls_errc end_of_image_marker_not_found
      • unexpected_define_number_of_lines_marker

        public static final charls.jpegls_errc unexpected_define_number_of_lines_marker
      • define_number_of_lines_marker_not_found

        public static final charls.jpegls_errc define_number_of_lines_marker_not_found
      • abbreviated_format_and_spiff_header_mismatch

        public static final charls.jpegls_errc abbreviated_format_and_spiff_header_mismatch
      • invalid_parameter_height

        public static final charls.jpegls_errc invalid_parameter_height
      • invalid_parameter_bits_per_sample

        public static final charls.jpegls_errc invalid_parameter_bits_per_sample
      • invalid_parameter_component_count

        public static final charls.jpegls_errc invalid_parameter_component_count
      • invalid_parameter_interleave_mode

        public static final charls.jpegls_errc invalid_parameter_interleave_mode
      • invalid_parameter_near_lossless

        public static final charls.jpegls_errc invalid_parameter_near_lossless
      • invalid_parameter_jpegls_preset_parameters

        public static final charls.jpegls_errc invalid_parameter_jpegls_preset_parameters
      • invalid_parameter_color_transformation

        public static final charls.jpegls_errc invalid_parameter_color_transformation
      • invalid_parameter_mapping_table_id

        public static final charls.jpegls_errc invalid_parameter_mapping_table_id
      • invalid_parameter_mapping_table_continuation

        public static final charls.jpegls_errc invalid_parameter_mapping_table_continuation
      • invalid_argument_bits_per_sample

        public static final charls.jpegls_errc invalid_argument_bits_per_sample
      • invalid_argument_component_count

        public static final charls.jpegls_errc invalid_argument_component_count
      • invalid_argument_interleave_mode

        public static final charls.jpegls_errc invalid_argument_interleave_mode
      • invalid_argument_near_lossless

        public static final charls.jpegls_errc invalid_argument_near_lossless
      • invalid_argument_jpegls_pc_parameters

        public static final charls.jpegls_errc invalid_argument_jpegls_pc_parameters
      • invalid_argument_color_transformation

        public static final charls.jpegls_errc invalid_argument_color_transformation
      • invalid_argument_encoding_options

        public static final charls.jpegls_errc invalid_argument_encoding_options
    • Field Detail

      • numVal

        private final int numVal
    • Constructor Detail

      • jpegls_errc

        private jpegls_errc​(int numVal)
    • Method Detail

      • values

        public static charls.jpegls_errc[] 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 (charls.jpegls_errc c : charls.jpegls_errc.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static charls.jpegls_errc 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
      • getNumVal

        public int getNumVal()