Enum PdfFieldBorderStyleEnum
- java.lang.Object
-
- java.lang.Enum<PdfFieldBorderStyleEnum>
-
- net.sf.jasperreports.engine.export.type.PdfFieldBorderStyleEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PdfFieldBorderStyleEnum>,NamedEnum,NamedValueEnum<java.lang.Integer>
public enum PdfFieldBorderStyleEnum extends java.lang.Enum<PdfFieldBorderStyleEnum> implements NamedValueEnum<java.lang.Integer>
- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BEVELEDConstant useful for specifying the beveled border for the input field in PDF form.DASHEDConstant useful for specifying the dashed border for the input field in PDF form.INSETConstant useful for specifying the inset border for the input field in PDF form.SOLIDConstant useful for specifying the solid border for the input field in PDF form.UNDERLINEConstant useful for specifying the underline border for the input field in PDF form.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PdfFieldBorderStyleEnumgetByName(java.lang.String name)java.lang.StringgetName()java.lang.IntegergetValue()static PdfFieldBorderStyleEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PdfFieldBorderStyleEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 namejava.lang.NullPointerException- if the argument is null
-
getValue
public final java.lang.Integer getValue()
- Specified by:
getValuein interfaceNamedValueEnum<java.lang.Integer>
-
getByName
public static PdfFieldBorderStyleEnum getByName(java.lang.String name)
-
-