Enum PDFExportFormat.InitialView
- java.lang.Object
-
- java.lang.Enum<PDFExportFormat.InitialView>
-
- com.levigo.jadice.server.libreoffice.server.PDFExportFormat.InitialView
-
- All Implemented Interfaces:
Serializable
,Comparable<PDFExportFormat.InitialView>
- Enclosing class:
- PDFExportFormat
public static enum PDFExportFormat.InitialView extends Enum<PDFExportFormat.InitialView>
Specifies how the PDF document should be displayed when opened.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PDFExportFormat.InitialView
valueOf(String name)
Returns the enum constant of this type with the specified name.static PDFExportFormat.InitialView[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final PDFExportFormat.InitialView DEFAULT
Select the default viewer mode, neither outlines or thumbnails.
-
OUTLINE
public static final PDFExportFormat.InitialView OUTLINE
The document is opened with outline pane opened
-
THUMBNAIL
public static final PDFExportFormat.InitialView THUMBNAIL
The document is opened with thumbnail pane opened
-
-
Method Detail
-
values
public static PDFExportFormat.InitialView[] 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 (PDFExportFormat.InitialView c : PDFExportFormat.InitialView.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PDFExportFormat.InitialView 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
-
-