Enum Class OptimizeFilesTaskRequest.Profile

java.lang.Object
java.lang.Enum<OptimizeFilesTaskRequest.Profile>
com.cloudconvert.dto.request.OptimizeFilesTaskRequest.Profile
All Implemented Interfaces:
Serializable, Comparable<OptimizeFilesTaskRequest.Profile>, Constable
Enclosing class:
OptimizeFilesTaskRequest

public static enum OptimizeFilesTaskRequest.Profile extends Enum<OptimizeFilesTaskRequest.Profile>
  • 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
    Optimization for archiving purposes - Remove redundant and unnecessary data for archiving - Intelligently compress images - Merge and subset fonts
    Optimization for maximal size reduction - Use the maximal possible compression - Might reduce the visual quality
    Optimization for scanned images - Profile optimized for PDFs that mainly consist of raster images - Compress the images without significantly reducing the visual quality
    Optimization for print - Remove redundant and unnecessary data for printing - Down-sample, clip, and intelligently compress images - Merge and subset fonts - Convert colors to CMYK
    Optimization for the web (Default profile) - Remove redundant and unnecessary data for the web - Down-sample, clip, and intelligently compress images - Merge and subset fonts - Convert colors to RGB
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

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

    • WEB

      public static final OptimizeFilesTaskRequest.Profile WEB
      Optimization for the web (Default profile) - Remove redundant and unnecessary data for the web - Down-sample, clip, and intelligently compress images - Merge and subset fonts - Convert colors to RGB
    • PRINT

      public static final OptimizeFilesTaskRequest.Profile PRINT
      Optimization for print - Remove redundant and unnecessary data for printing - Down-sample, clip, and intelligently compress images - Merge and subset fonts - Convert colors to CMYK
    • ARCHIVE

      public static final OptimizeFilesTaskRequest.Profile ARCHIVE
      Optimization for archiving purposes - Remove redundant and unnecessary data for archiving - Intelligently compress images - Merge and subset fonts
    • MRC

      public static final OptimizeFilesTaskRequest.Profile MRC
      Optimization for scanned images - Profile optimized for PDFs that mainly consist of raster images - Compress the images without significantly reducing the visual quality
    • MAX

      public static final OptimizeFilesTaskRequest.Profile MAX
      Optimization for maximal size reduction - Use the maximal possible compression - Might reduce the visual quality
  • Method Details

    • values

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

      public static OptimizeFilesTaskRequest.Profile valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null