public enum RasterizationQualityValue extends Enum<RasterizationQualityValue>
RasterizationQuality
| Enum Constant and Description |
|---|
High
The high
|
Low
The low
|
Medium
The medium
|
| Modifier and Type | Method and Description |
|---|---|
static RasterizationQualityValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RasterizationQualityValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RasterizationQualityValue Low
The low
public static final RasterizationQualityValue Medium
The medium
public static final RasterizationQualityValue High
The high
public static RasterizationQualityValue[] values()
for (RasterizationQualityValue c : RasterizationQualityValue.values()) System.out.println(c);
public static RasterizationQualityValue 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 nullCopyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.