public enum PDFVersion extends Enum<PDFVersion>
Document.getPDFVersion().| Enum Constant and Description | 
|---|
V_OTHER  | 
V1_0  | 
V1_1  | 
V1_2  | 
V1_3  | 
V1_4  | 
V1_5  | 
V1_6  | 
V1_7  | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
getVersionInd()
Returns the version indicator ('1.1', '1.2', etc). 
 | 
String | 
toString()  | 
static PDFVersion | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static PDFVersion[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final PDFVersion V1_0
public static final PDFVersion V1_1
public static final PDFVersion V1_2
public static final PDFVersion V1_3
public static final PDFVersion V1_4
public static final PDFVersion V1_5
public static final PDFVersion V1_6
public static final PDFVersion V1_7
public static final PDFVersion V_OTHER
public static PDFVersion[] values()
for (PDFVersion c : PDFVersion.values()) System.out.println(c);
public static PDFVersion valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getVersionInd()
public String toString()
toString in class Enum<PDFVersion>