Package net.sf.jasperreports.export.type
Enum PdfaConformanceEnum
- java.lang.Object
-
- java.lang.Enum<PdfaConformanceEnum>
-
- net.sf.jasperreports.export.type.PdfaConformanceEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PdfaConformanceEnum>,NamedEnum
public enum PdfaConformanceEnum extends java.lang.Enum<PdfaConformanceEnum> implements NamedEnum
- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PdfaConformanceEnumgetByName(java.lang.String name)java.lang.StringgetName()static PdfaConformanceEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PdfaConformanceEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final PdfaConformanceEnum NONE
-
PDFA_1A
public static final PdfaConformanceEnum PDFA_1A
-
PDFA_1B
public static final PdfaConformanceEnum PDFA_1B
-
PDFA_2A
public static final PdfaConformanceEnum PDFA_2A
-
PDFA_2B
public static final PdfaConformanceEnum PDFA_2B
-
PDFA_2U
public static final PdfaConformanceEnum PDFA_2U
-
PDFA_3A
public static final PdfaConformanceEnum PDFA_3A
-
PDFA_3B
public static final PdfaConformanceEnum PDFA_3B
-
PDFA_3U
public static final PdfaConformanceEnum PDFA_3U
-
-
Method Detail
-
values
public static PdfaConformanceEnum[] 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 (PdfaConformanceEnum c : PdfaConformanceEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PdfaConformanceEnum 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
-
getByName
public static PdfaConformanceEnum getByName(java.lang.String name)
-
-