Enum DocumentViewer.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<DocumentViewer.PropertyKeys>
-
- org.primefaces.extensions.component.documentviewer.DocumentViewer.PropertyKeys
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DocumentViewer.PropertyKeys>
- Enclosing class:
- DocumentViewer
protected static enum DocumentViewer.PropertyKeys extends java.lang.Enum<DocumentViewer.PropertyKeys>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DocumentViewer.PropertyKeysvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DocumentViewer.PropertyKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
width
public static final DocumentViewer.PropertyKeys width
-
height
public static final DocumentViewer.PropertyKeys height
-
style
public static final DocumentViewer.PropertyKeys style
-
title
public static final DocumentViewer.PropertyKeys title
-
name
public static final DocumentViewer.PropertyKeys name
-
library
public static final DocumentViewer.PropertyKeys library
-
cache
public static final DocumentViewer.PropertyKeys cache
-
page
public static final DocumentViewer.PropertyKeys page
-
download
public static final DocumentViewer.PropertyKeys download
-
locale
public static final DocumentViewer.PropertyKeys locale
-
disableFontFace
public static final DocumentViewer.PropertyKeys disableFontFace
-
nameddest
public static final DocumentViewer.PropertyKeys nameddest
-
pagemode
public static final DocumentViewer.PropertyKeys pagemode
-
zoom
public static final DocumentViewer.PropertyKeys zoom
-
-
Method Detail
-
values
public static DocumentViewer.PropertyKeys[] 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 (DocumentViewer.PropertyKeys c : DocumentViewer.PropertyKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocumentViewer.PropertyKeys 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
-
-