Package com.itextpdf.kernel.validation
Enum ValidationType
- java.lang.Object
-
- java.lang.Enum<ValidationType>
-
- com.itextpdf.kernel.validation.ValidationType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ValidationType>
public enum ValidationType extends java.lang.Enum<ValidationType>
Type of object to validate.
-
-
Enum Constant Summary
-
Constructor Summary
Constructors Modifier Constructor Description private
ValidationType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ValidationType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ValidationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PDF_DOCUMENT
public static final ValidationType PDF_DOCUMENT
-
CANVAS_STACK
public static final ValidationType CANVAS_STACK
-
FILL_COLOR
public static final ValidationType FILL_COLOR
-
EXTENDED_GRAPHICS_STATE
public static final ValidationType EXTENDED_GRAPHICS_STATE
-
INLINE_IMAGE
public static final ValidationType INLINE_IMAGE
-
PDF_PAGE
public static final ValidationType PDF_PAGE
-
PDF_OBJECT
public static final ValidationType PDF_OBJECT
-
RENDERING_INTENT
public static final ValidationType RENDERING_INTENT
-
STROKE_COLOR
public static final ValidationType STROKE_COLOR
-
TAG_STRUCTURE_ELEMENT
public static final ValidationType TAG_STRUCTURE_ELEMENT
-
FONT_GLYPHS
public static final ValidationType FONT_GLYPHS
-
XREF_TABLE
public static final ValidationType XREF_TABLE
-
SIGNATURE
public static final ValidationType SIGNATURE
-
SIGNATURE_TYPE
public static final ValidationType SIGNATURE_TYPE
-
CRYPTO
public static final ValidationType CRYPTO
-
FONT
public static final ValidationType FONT
-
CANVAS_BEGIN_MARKED_CONTENT
public static final ValidationType CANVAS_BEGIN_MARKED_CONTENT
-
CANVAS_WRITING_CONTENT
public static final ValidationType CANVAS_WRITING_CONTENT
-
LAYOUT
public static final ValidationType LAYOUT
-
DUPLICATE_ID_ENTRY
public static final ValidationType DUPLICATE_ID_ENTRY
-
-
Method Detail
-
values
public static ValidationType[] 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 (ValidationType c : ValidationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ValidationType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-