Package net.webpdf.wsclient.openapi
Enum MetadataViewerPreferences.NonFullScreenPageModeEnum
- java.lang.Object
-
- java.lang.Enum<MetadataViewerPreferences.NonFullScreenPageModeEnum>
-
- net.webpdf.wsclient.openapi.MetadataViewerPreferences.NonFullScreenPageModeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MetadataViewerPreferences.NonFullScreenPageModeEnum>
- Enclosing class:
- MetadataViewerPreferences
public static enum MetadataViewerPreferences.NonFullScreenPageModeEnum extends Enum<MetadataViewerPreferences.NonFullScreenPageModeEnum>
When displaying a document in windowed mode, the Reader shall show the selected panel. * none = No panel shall be opened. * outlines = The document's outlines shall be displayed. * thumbnails = The document's page thumbnails shall be shown. * optionalContents = document's layers (OCGs - Optional Content Groups) shall be displayed.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONEOPTIONALCONTENTSOUTLINESTHUMBNAILS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MetadataViewerPreferences.NonFullScreenPageModeEnumfromValue(String value)StringgetValue()StringtoString()static MetadataViewerPreferences.NonFullScreenPageModeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MetadataViewerPreferences.NonFullScreenPageModeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final MetadataViewerPreferences.NonFullScreenPageModeEnum NONE
-
OUTLINES
public static final MetadataViewerPreferences.NonFullScreenPageModeEnum OUTLINES
-
THUMBNAILS
public static final MetadataViewerPreferences.NonFullScreenPageModeEnum THUMBNAILS
-
OPTIONALCONTENTS
public static final MetadataViewerPreferences.NonFullScreenPageModeEnum OPTIONALCONTENTS
-
-
Method Detail
-
values
public static MetadataViewerPreferences.NonFullScreenPageModeEnum[] 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 (MetadataViewerPreferences.NonFullScreenPageModeEnum c : MetadataViewerPreferences.NonFullScreenPageModeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetadataViewerPreferences.NonFullScreenPageModeEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<MetadataViewerPreferences.NonFullScreenPageModeEnum>
-
fromValue
public static MetadataViewerPreferences.NonFullScreenPageModeEnum fromValue(String value)
-
-