Package org.verapdf.parser
Enum PDFFlavour
- java.lang.Object
-
- java.lang.Enum<PDFFlavour>
-
- org.verapdf.parser.PDFFlavour
-
- All Implemented Interfaces:
Serializable,Comparable<PDFFlavour>
public enum PDFFlavour extends Enum<PDFFlavour>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PDFFlavourvalueOf(String name)Returns the enum constant of this type with the specified name.static PDFFlavour[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_FLAVOUR
public static final PDFFlavour NO_FLAVOUR
-
PDFA_1_A
public static final PDFFlavour PDFA_1_A
-
PDFA_1_B
public static final PDFFlavour PDFA_1_B
-
PDFA_2_A
public static final PDFFlavour PDFA_2_A
-
PDFA_2_B
public static final PDFFlavour PDFA_2_B
-
PDFA_2_U
public static final PDFFlavour PDFA_2_U
-
PDFA_3_A
public static final PDFFlavour PDFA_3_A
-
PDFA_3_B
public static final PDFFlavour PDFA_3_B
-
PDFA_3_U
public static final PDFFlavour PDFA_3_U
-
PDFA_4
public static final PDFFlavour PDFA_4
-
PDFA_4_F
public static final PDFFlavour PDFA_4_F
-
PDFA_4_E
public static final PDFFlavour PDFA_4_E
-
PDFUA_1
public static final PDFFlavour PDFUA_1
-
WCAG2_1
public static final PDFFlavour WCAG2_1
-
-
Method Detail
-
values
public static PDFFlavour[] 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 (PDFFlavour c : PDFFlavour.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PDFFlavour valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-