Enum PdfAVersions

    • Enum Constant Detail

      • PdfA1b

        public static final PdfAVersions PdfA1b
        A PDF compliant with the ISO 19005-1 (PDF/A-1B)
      • PdfA2b

        public static final PdfAVersions PdfA2b
        A PDF compliant with the ISO 19005-2 (PDF/A-2B)
      • PdfA3b

        public static final PdfAVersions PdfA3b
        A PDF compliant with the ISO 19005-3 (PDF/A-3B)
      • PdfA1a

        public static final PdfAVersions PdfA1a
        A PDF compliant with the ISO 19005-1 (PDF/A-1A)
      • PdfA2a

        public static final PdfAVersions PdfA2a
        A PDF compliant with the ISO 19005-2 (PDF/A-2A)
      • PdfA3a

        public static final PdfAVersions PdfA3a
        A PDF compliant with the ISO 19005-3 (PDF/A-3A)
    • Method Detail

      • values

        public static PdfAVersions[] 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 (PdfAVersions c : PdfAVersions.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static PdfAVersions 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 name
        NullPointerException - if the argument is null
      • getValue

        public int getValue()