Package com.cloudconvert.dto.request
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 ARCHIVEOptimization for archiving purposes - Remove redundant and unnecessary data for archiving - Intelligently compress images - Merge and subset fontsMAXOptimization for maximal size reduction - Use the maximal possible compression - Might reduce the visual qualityMRCOptimization for scanned images - Profile optimized for PDFs that mainly consist of raster images - Compress the images without significantly reducing the visual qualityPRINTOptimization for print - Remove redundant and unnecessary data for printing - Down-sample, clip, and intelligently compress images - Merge and subset fonts - Convert colors to CMYKWEBOptimization 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.ProfilevalueOf(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, valueOfMethods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-
Enum Constant Details
-
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
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
Optimization for archiving purposes - Remove redundant and unnecessary data for archiving - Intelligently compress images - Merge and subset fonts -
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
Optimization for maximal size reduction - Use the maximal possible compression - Might reduce the visual quality
-
-
Method Details
-
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
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 namejava.lang.NullPointerException- if the argument is null
-