Package org.apache.fop.render.pcl
Enum PCLRenderingMode
- All Implemented Interfaces:
Serializable
,Comparable<PCLRenderingMode>
Enumeration class for PCL rendering modes.
-
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
PCLRenderingMode
(String name, float defaultDitheringQuality) Constructor to add a new named item. -
Method Summary
Modifier and TypeMethodDescriptionfloat
Returns the default dithering quality for this rendering mode.getName()
static PCLRenderingMode
getValueOf
(String name) Returns the enumeration/singleton object based on its name.private Object
toString()
static PCLRenderingMode
Returns the enum constant of this type with the specified name.static PCLRenderingMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
QUALITY
"Quality" rendering (mixed native and bitmap for improved quality) -
SPEED
"Speed" rendering (maximum speed with native rendering, reduced visual quality) -
BITMAP
"Bitmap" rendering (pages are painted entirely as bitmaps, maximum quality, reduced performance)
-
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
name
-
defaultDitheringQuality
private float defaultDitheringQuality
-
-
Constructor Details
-
PCLRenderingMode
Constructor to add a new named item.- Parameters:
name
- Name of the item.defaultDitheringQuality
- the default dithering quality (0.0f..1.0f)
-
-
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getName
- Returns:
- the name of the enum
-
getDefaultDitheringQuality
public float getDefaultDitheringQuality()Returns the default dithering quality for this rendering mode.- Returns:
- the default dithering quality (0.0f..1.0f)
-
getValueOf
Returns the enumeration/singleton object based on its name.- Parameters:
name
- the name of the enumeration value- Returns:
- the enumeration object
-
readResolve
- Throws:
ObjectStreamException
-
toString
- Overrides:
toString
in classEnum<PCLRenderingMode>
-