Package net.webpdf.wsclient.openapi
Enum MetadataInformation.PageLayoutEnum
- java.lang.Object
-
- java.lang.Enum<MetadataInformation.PageLayoutEnum>
-
- net.webpdf.wsclient.openapi.MetadataInformation.PageLayoutEnum
-
- All Implemented Interfaces:
Serializable,Comparable<MetadataInformation.PageLayoutEnum>
- Enclosing class:
- MetadataInformation
public static enum MetadataInformation.PageLayoutEnum extends Enum<MetadataInformation.PageLayoutEnum>
The set initial page layout of a document. When opening the document in a Reader, this layout shall be selected to display pages. * singlePage = One page at a time. * oneColumn = One continuous column of pages. * twoColumnLeft = The pages in two columns, with odd-numbered pages on the left. * twoColumnRight = The pages in two columns, with odd-numbered pages on the right. * twoPageLeft = Display the pages two at a time, with odd-numbered pages on the left. * twoPageRight = Display the pages two at a time, with odd-numbered pages on the right.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ONECOLUMNSINGLEPAGETWOCOLUMNLEFTTWOCOLUMNRIGHTTWOPAGELEFTTWOPAGERIGHT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MetadataInformation.PageLayoutEnumfromValue(String value)StringgetValue()StringtoString()static MetadataInformation.PageLayoutEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static MetadataInformation.PageLayoutEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLEPAGE
public static final MetadataInformation.PageLayoutEnum SINGLEPAGE
-
ONECOLUMN
public static final MetadataInformation.PageLayoutEnum ONECOLUMN
-
TWOCOLUMNLEFT
public static final MetadataInformation.PageLayoutEnum TWOCOLUMNLEFT
-
TWOCOLUMNRIGHT
public static final MetadataInformation.PageLayoutEnum TWOCOLUMNRIGHT
-
TWOPAGELEFT
public static final MetadataInformation.PageLayoutEnum TWOPAGELEFT
-
TWOPAGERIGHT
public static final MetadataInformation.PageLayoutEnum TWOPAGERIGHT
-
-
Method Detail
-
values
public static MetadataInformation.PageLayoutEnum[] 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.PageLayoutEnum c : MetadataInformation.PageLayoutEnum.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.PageLayoutEnum 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.PageLayoutEnum>
-
fromValue
public static MetadataInformation.PageLayoutEnum fromValue(String value)
-
-