Enum OptimizeFilesTaskRequest.Profile

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

public static enum OptimizeFilesTaskRequest.Profile
extends java.lang.Enum<OptimizeFilesTaskRequest.Profile>
  • Nested Class Summary

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

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

    Enum Constants
    Enum Constant Description
    ARCHIVE
    Optimization for archiving purposes - Remove redundant and unnecessary data for archiving - Intelligently compress images - Merge and subset fonts
    MAX
    Optimization for maximal size reduction - Use the maximal possible compression - Might reduce the visual quality
    MRC
    Optimization for scanned images - Profile optimized for PDFs that mainly consist of raster images - Compress the images without significantly reducing the visual quality
    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
    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
  • Method Summary

    Modifier and Type Method Description
    static OptimizeFilesTaskRequest.Profile valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static OptimizeFilesTaskRequest.Profile[] values()
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    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 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 OptimizeFilesTaskRequest.Profile 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