Package net.webpdf.wsclient.openapi
Enum MetadataInformation.InitialViewEnum
- java.lang.Object
-
- java.lang.Enum<MetadataInformation.InitialViewEnum>
-
- net.webpdf.wsclient.openapi.MetadataInformation.InitialViewEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MetadataInformation.InitialViewEnum>
- Enclosing class:
- MetadataInformation
public static enum MetadataInformation.InitialViewEnum extends Enum<MetadataInformation.InitialViewEnum>
Defines which sub-windows will be opened when the PDF document is opened. * none = No special view * outlines = Opens the \"Bookmarks\" tab * thumbnails = Opens the \"Thumbnails\" tab * fullscreen = Opens the document in full screen mode
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTACHMENTSFULLSCREENLAYERSNONEOUTLINESTHUMBNAILS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MetadataInformation.InitialViewEnumfromValue(String value)StringgetValue()StringtoString()static MetadataInformation.InitialViewEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MetadataInformation.InitialViewEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final MetadataInformation.InitialViewEnum NONE
-
OUTLINES
public static final MetadataInformation.InitialViewEnum OUTLINES
-
THUMBNAILS
public static final MetadataInformation.InitialViewEnum THUMBNAILS
-
FULLSCREEN
public static final MetadataInformation.InitialViewEnum FULLSCREEN
-
LAYERS
public static final MetadataInformation.InitialViewEnum LAYERS
-
ATTACHMENTS
public static final MetadataInformation.InitialViewEnum ATTACHMENTS
-
-
Method Detail
-
values
public static MetadataInformation.InitialViewEnum[] 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 (MetadataInformation.InitialViewEnum c : MetadataInformation.InitialViewEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetadataInformation.InitialViewEnum 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<MetadataInformation.InitialViewEnum>
-
fromValue
public static MetadataInformation.InitialViewEnum fromValue(String value)
-
-