Enum PdfExportPreferences.Format
- java.lang.Object
-
- java.lang.Enum<PdfExportPreferences.Format>
-
- org.uberfire.ext.editor.commons.file.exports.PdfExportPreferences.Format
-
- All Implemented Interfaces:
Serializable,Comparable<PdfExportPreferences.Format>
- Enclosing class:
- PdfExportPreferences
public static enum PdfExportPreferences.Format extends Enum<PdfExportPreferences.Format>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PdfExportPreferences.FormatvalueOf(String name)Returns the enum constant of this type with the specified name.static PdfExportPreferences.Format[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
A0
public static final PdfExportPreferences.Format A0
-
A1
public static final PdfExportPreferences.Format A1
-
A2
public static final PdfExportPreferences.Format A2
-
A3
public static final PdfExportPreferences.Format A3
-
A4
public static final PdfExportPreferences.Format A4
-
A5
public static final PdfExportPreferences.Format A5
-
A6
public static final PdfExportPreferences.Format A6
-
A7
public static final PdfExportPreferences.Format A7
-
A8
public static final PdfExportPreferences.Format A8
-
A9
public static final PdfExportPreferences.Format A9
-
A10
public static final PdfExportPreferences.Format A10
-
B0
public static final PdfExportPreferences.Format B0
-
B1
public static final PdfExportPreferences.Format B1
-
B2
public static final PdfExportPreferences.Format B2
-
B3
public static final PdfExportPreferences.Format B3
-
B4
public static final PdfExportPreferences.Format B4
-
B5
public static final PdfExportPreferences.Format B5
-
B6
public static final PdfExportPreferences.Format B6
-
B7
public static final PdfExportPreferences.Format B7
-
B8
public static final PdfExportPreferences.Format B8
-
B9
public static final PdfExportPreferences.Format B9
-
B10
public static final PdfExportPreferences.Format B10
-
C0
public static final PdfExportPreferences.Format C0
-
C1
public static final PdfExportPreferences.Format C1
-
C2
public static final PdfExportPreferences.Format C2
-
C3
public static final PdfExportPreferences.Format C3
-
C4
public static final PdfExportPreferences.Format C4
-
C5
public static final PdfExportPreferences.Format C5
-
C6
public static final PdfExportPreferences.Format C6
-
C7
public static final PdfExportPreferences.Format C7
-
C8
public static final PdfExportPreferences.Format C8
-
C9
public static final PdfExportPreferences.Format C9
-
C10
public static final PdfExportPreferences.Format C10
-
-
Method Detail
-
values
public static PdfExportPreferences.Format[] 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 (PdfExportPreferences.Format c : PdfExportPreferences.Format.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PdfExportPreferences.Format valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-