Package net.webpdf.wsclient.openapi
Enum OperationToolboxSplitSplit.ModeEnum
- java.lang.Object
-
- java.lang.Enum<OperationToolboxSplitSplit.ModeEnum>
-
- net.webpdf.wsclient.openapi.OperationToolboxSplitSplit.ModeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationToolboxSplitSplit.ModeEnum>
- Enclosing class:
- OperationToolboxSplitSplit
public static enum OperationToolboxSplitSplit.ModeEnum extends Enum<OperationToolboxSplitSplit.ModeEnum>
Defines the mode used to split the PDF document. * last = Last page - Uses \"pages\" to define the last page that will be contained in the new PDF document. * first = First page - Uses \"pages\" to define the first page that will be contained in the new PDF document. * list = List of pages - Uses \"pages\" to define a list of pages that should be extracted from the document. A single PDF document will be created on the basis of this list. * single = Selected pages - Uses the \"pages\" attribute to define a list of pages that should be extracted from the document. And creates a ZIP file with the corresponding pages. * each = Every nth page - Uses the \"pages\" attribute to define the interval at which pages should be extracted. The \"startPage\" attribute is used to define the page on which the process will start. The result will be a ZIP file. * group = Group pages - Multiple pages will be added to a single PDF document. The \"pages\" attribute can be used to define how many pages will be saved in a single PDF document. The \"startPage\" attribute is used to define the page on which the process will start. The result will be a ZIP file. * burst = Ungroup pages - A new PDF document will be generated from each page. The result will be a ZIP file.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationToolboxSplitSplit.ModeEnumfromValue(String value)StringgetValue()StringtoString()static OperationToolboxSplitSplit.ModeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationToolboxSplitSplit.ModeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LAST
public static final OperationToolboxSplitSplit.ModeEnum LAST
-
FIRST
public static final OperationToolboxSplitSplit.ModeEnum FIRST
-
LIST
public static final OperationToolboxSplitSplit.ModeEnum LIST
-
SINGLE
public static final OperationToolboxSplitSplit.ModeEnum SINGLE
-
EACH
public static final OperationToolboxSplitSplit.ModeEnum EACH
-
GROUP
public static final OperationToolboxSplitSplit.ModeEnum GROUP
-
BURST
public static final OperationToolboxSplitSplit.ModeEnum BURST
-
-
Method Detail
-
values
public static OperationToolboxSplitSplit.ModeEnum[] 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 (OperationToolboxSplitSplit.ModeEnum c : OperationToolboxSplitSplit.ModeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationToolboxSplitSplit.ModeEnum 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<OperationToolboxSplitSplit.ModeEnum>
-
fromValue
public static OperationToolboxSplitSplit.ModeEnum fromValue(String value)
-
-