Package net.webpdf.wsclient.openapi
Enum OperationViewerPreferences.NonFullScreenPageModeEnum
- java.lang.Object
-
- java.lang.Enum<OperationViewerPreferences.NonFullScreenPageModeEnum>
-
- net.webpdf.wsclient.openapi.OperationViewerPreferences.NonFullScreenPageModeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationViewerPreferences.NonFullScreenPageModeEnum>
- Enclosing class:
- OperationViewerPreferences
public static enum OperationViewerPreferences.NonFullScreenPageModeEnum extends Enum<OperationViewerPreferences.NonFullScreenPageModeEnum>
Konfiguriert die Anzeige des Dokuments, wenn das Dokument nicht im Vollbildmodus betrachtet wird. Dies konfiguriert in erste Linie welche Navigationsansicht für den Betrachter geöffnet werden soll. * none = Weder die Inhaltsübersicht, noch die Miniaturansicht der Seiten sollen angezeigt werden. * outlines = Die Inhaltsübersicht des Dokuments soll angezeigt werden. * thumbnails = Die Miniaturansicht der Seiten des Dokuments soll angezeigt werden. * optionalContents = Die Layer (Optional Content Groups) des Dokuments sollen angezeigt werden.
-
-
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 OperationViewerPreferences.NonFullScreenPageModeEnumfromValue(String value)StringgetValue()StringtoString()static OperationViewerPreferences.NonFullScreenPageModeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationViewerPreferences.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 OperationViewerPreferences.NonFullScreenPageModeEnum NONE
-
OUTLINES
public static final OperationViewerPreferences.NonFullScreenPageModeEnum OUTLINES
-
THUMBNAILS
public static final OperationViewerPreferences.NonFullScreenPageModeEnum THUMBNAILS
-
OPTIONALCONTENTS
public static final OperationViewerPreferences.NonFullScreenPageModeEnum OPTIONALCONTENTS
-
-
Method Detail
-
values
public static OperationViewerPreferences.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 (OperationViewerPreferences.NonFullScreenPageModeEnum c : OperationViewerPreferences.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 OperationViewerPreferences.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<OperationViewerPreferences.NonFullScreenPageModeEnum>
-
fromValue
public static OperationViewerPreferences.NonFullScreenPageModeEnum fromValue(String value)
-
-