Package org.mustangproject.ZUGFeRD
Enum PDFAConformanceLevel
- java.lang.Object
-
- java.lang.Enum<PDFAConformanceLevel>
-
- org.mustangproject.ZUGFeRD.PDFAConformanceLevel
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PDFAConformanceLevel>
public enum PDFAConformanceLevel extends java.lang.Enum<PDFAConformanceLevel>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESSIBLEBASICUNICODE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PDFAConformanceLevelfindByLetter(java.lang.String letter)java.lang.StringgetLetter()static PDFAConformanceLevelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PDFAConformanceLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCESSIBLE
public static final PDFAConformanceLevel ACCESSIBLE
-
BASIC
public static final PDFAConformanceLevel BASIC
-
UNICODE
public static final PDFAConformanceLevel UNICODE
-
-
Method Detail
-
values
public static PDFAConformanceLevel[] 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 (PDFAConformanceLevel c : PDFAConformanceLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PDFAConformanceLevel 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
-
getLetter
public java.lang.String getLetter()
-
findByLetter
public static PDFAConformanceLevel findByLetter(java.lang.String letter)
-
-