public enum RenderingIntent extends Enum<RenderingIntent>
| Enum Constant and Description | 
|---|
| ABSOLUTE_COLORIMETRICAbsolute Colorimetric. | 
| PERCEPTUALPerceptual. | 
| RELATIVE_COLORIMETRICRelative Colorimetric. | 
| SATURATIONSaturation. | 
| Modifier and Type | Method and Description | 
|---|---|
| static RenderingIntent | fromString(String value) | 
| String | stringValue()Returns the string value, as used in a PDF file. | 
| static RenderingIntent | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static RenderingIntent[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RenderingIntent ABSOLUTE_COLORIMETRIC
public static final RenderingIntent RELATIVE_COLORIMETRIC
public static final RenderingIntent SATURATION
public static final RenderingIntent PERCEPTUAL
public static RenderingIntent[] values()
for (RenderingIntent c : RenderingIntent.values()) System.out.println(c);
public static RenderingIntent valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static RenderingIntent fromString(String value)
public String stringValue()
Copyright © 2002–2016 The Apache Software Foundation. All rights reserved.