Enum PdfFieldBorderStyleEnum

    • Enum Constant Detail

      • SOLID

        public static final PdfFieldBorderStyleEnum SOLID
        Constant useful for specifying the solid border for the input field in PDF form.
      • DASHED

        public static final PdfFieldBorderStyleEnum DASHED
        Constant useful for specifying the dashed border for the input field in PDF form.
      • BEVELED

        public static final PdfFieldBorderStyleEnum BEVELED
        Constant useful for specifying the beveled border for the input field in PDF form.
      • INSET

        public static final PdfFieldBorderStyleEnum INSET
        Constant useful for specifying the inset border for the input field in PDF form.
      • UNDERLINE

        public static final PdfFieldBorderStyleEnum UNDERLINE
        Constant useful for specifying the underline border for the input field in PDF form.
    • Method Detail

      • values

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

        public static PdfFieldBorderStyleEnum 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