public enum PageRenderWarning extends java.lang.Enum<PageRenderWarning>
| Enum Constant and Description |
|---|
ANNOT_MISSING_NORMAL_APPEARANCE_WARNING
One or more Annotations of an unsupported type are missing its NormalAppearance stream and will not render
|
ANNOT_RTSWARNING
One or more Annotations contain Rich Text String Content and will not render if the NormalAppearance stream is not set
|
LESS_IMAGE_DATA_THAN_EXPECTED_WARNING
An image on the page lacks sufficient data, if rendered the missing data will be filled in by white pixels.
|
NEED_APPEARANCES_FLAG_WARNING
The NeedAppearances flag is on in the AcroForm dictionary and some content may not render
|
| Modifier and Type | Method and Description |
|---|---|
static PageRenderWarning |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PageRenderWarning[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageRenderWarning NEED_APPEARANCES_FLAG_WARNING
public static final PageRenderWarning ANNOT_RTSWARNING
public static final PageRenderWarning ANNOT_MISSING_NORMAL_APPEARANCE_WARNING
public static final PageRenderWarning LESS_IMAGE_DATA_THAN_EXPECTED_WARNING
public static PageRenderWarning[] values()
for (PageRenderWarning c : PageRenderWarning.values()) System.out.println(c);
public static PageRenderWarning valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null