Enum PdfFieldBorderStyleEnum

java.lang.Object
java.lang.Enum<PdfFieldBorderStyleEnum>
net.sf.jasperreports.pdf.type.PdfFieldBorderStyleEnum
All Implemented Interfaces:
Serializable, Comparable<PdfFieldBorderStyleEnum>, java.lang.constant.Constable, NamedEnum, NamedValueEnum<Integer>

public enum PdfFieldBorderStyleEnum extends Enum<PdfFieldBorderStyleEnum> implements NamedValueEnum<Integer>
Author:
Teodor Danciu (teodord@users.sourceforge.net)
  • Enum Constant Details

    • 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 Details

    • values

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

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

      public String getName()
      Specified by:
      getName in interface NamedEnum
    • getByName

      public static PdfFieldBorderStyleEnum getByName(String name)