Package net.webpdf.wsclient.openapi
Enum MetadataInformation.MagnificationEnum
- java.lang.Object
-
- java.lang.Enum<MetadataInformation.MagnificationEnum>
-
- net.webpdf.wsclient.openapi.MetadataInformation.MagnificationEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MetadataInformation.MagnificationEnum>
- Enclosing class:
- MetadataInformation
public static enum MetadataInformation.MagnificationEnum extends Enum<MetadataInformation.MagnificationEnum>
The initial page zoom settings of a document. When opening the document in a Reader, this zoom settings shall be used. * none = Uses the application's default view. * fitWidth = Page width. * fitPage = Page dimensions. * fitHeight = Page height. * fitVisible = Page content width. * fitActual = Uses the original page dimensions (100% zoom factor). * zoom = Sets an explicit magnification value.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MetadataInformation.MagnificationEnumfromValue(String value)StringgetValue()StringtoString()static MetadataInformation.MagnificationEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MetadataInformation.MagnificationEnum[]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.MagnificationEnum NONE
-
FITWIDTH
public static final MetadataInformation.MagnificationEnum FITWIDTH
-
FITVISIBLE
public static final MetadataInformation.MagnificationEnum FITVISIBLE
-
FITHEIGHT
public static final MetadataInformation.MagnificationEnum FITHEIGHT
-
FITPAGE
public static final MetadataInformation.MagnificationEnum FITPAGE
-
FITACTUAL
public static final MetadataInformation.MagnificationEnum FITACTUAL
-
ZOOM
public static final MetadataInformation.MagnificationEnum ZOOM
-
-
Method Detail
-
values
public static MetadataInformation.MagnificationEnum[] 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.MagnificationEnum c : MetadataInformation.MagnificationEnum.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.MagnificationEnum 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.MagnificationEnum>
-
fromValue
public static MetadataInformation.MagnificationEnum fromValue(String value)
-
-