Package net.webpdf.wsclient.openapi
Enum OperationTiff.BlackAndWhiteQualityEnum
- java.lang.Object
-
- java.lang.Enum<OperationTiff.BlackAndWhiteQualityEnum>
-
- net.webpdf.wsclient.openapi.OperationTiff.BlackAndWhiteQualityEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationTiff.BlackAndWhiteQualityEnum>
- Enclosing class:
- OperationTiff
public static enum OperationTiff.BlackAndWhiteQualityEnum extends Enum<OperationTiff.BlackAndWhiteQualityEnum>
For \"tif\" exports, this parameter is used to define the quality of black-and-white images if \"group3\" or \"group4\" is used as a compression method. The higher the quality, the more time that will be required in order to render the image: * low = Direct conversion (best reserved for \"text only\" content) * middle = A diffusion filter will be applied to the image before conversion * high = Greyscale conversion and a diffusion filter will be applied to the image before conversion
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationTiff.BlackAndWhiteQualityEnumfromValue(String value)StringgetValue()StringtoString()static OperationTiff.BlackAndWhiteQualityEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationTiff.BlackAndWhiteQualityEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOW
public static final OperationTiff.BlackAndWhiteQualityEnum LOW
-
MIDDLE
public static final OperationTiff.BlackAndWhiteQualityEnum MIDDLE
-
HIGH
public static final OperationTiff.BlackAndWhiteQualityEnum HIGH
-
-
Method Detail
-
values
public static OperationTiff.BlackAndWhiteQualityEnum[] 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 (OperationTiff.BlackAndWhiteQualityEnum c : OperationTiff.BlackAndWhiteQualityEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationTiff.BlackAndWhiteQualityEnum valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<OperationTiff.BlackAndWhiteQualityEnum>
-
fromValue
public static OperationTiff.BlackAndWhiteQualityEnum fromValue(String value)
-
-