public enum PdfVersion extends Enum<PdfVersion>
This enum represents version of pdf file.
Enum Constant and Description |
---|
v_1_0
Adobe version 1.0
|
v_1_1
Adobe version 1.1
|
v_1_2
Adobe version 1.2
|
v_1_3
Adobe version 1.3
|
v_1_4
Adobe version 1.4
|
v_1_5
Adobe version 1.5
|
v_1_6
Adobe version 1.6
|
v_1_7
Adobe version 1.7
|
v_2_0
ISO Standard PDF 2.0
|
Modifier and Type | Method and Description |
---|---|
static PdfVersion |
getByValue(int value) |
int |
getValue() |
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 v_1_0
public static final PdfVersion v_1_1
public static final PdfVersion v_1_2
public static final PdfVersion v_1_3
public static final PdfVersion v_1_4
public static final PdfVersion v_1_5
public static final PdfVersion v_1_6
public static final PdfVersion v_1_7
public static final PdfVersion v_2_0
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 int getValue()
public static PdfVersion getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.