Enum PdfFieldBorderStyleEnum

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      BEVELED
      Constant useful for specifying the beveled border for the input field in PDF form.
      DASHED
      Constant useful for specifying the dashed border for the input field in PDF form.
      INSET
      Constant useful for specifying the inset border for the input field in PDF form.
      SOLID
      Constant useful for specifying the solid border for the input field in PDF form.
      UNDERLINE
      Constant useful for specifying the underline border for the input field in PDF form.
    • 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​(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 name
        java.lang.NullPointerException - if the argument is null
      • getValue

        public final java.lang.Integer getValue()
        Specified by:
        getValue in interface NamedValueEnum<java.lang.Integer>
      • getName

        public java.lang.String getName()
        Specified by:
        getName in interface NamedEnum