public enum ConversionMode extends Enum<ConversionMode>
Enum Constant and Description |
---|
CONVERT_FIRST_FILE_AND_ATTACH_REST_AS_ORIGINAL
The first documents needs to be converted and the rest of the documents
need to be included as file attachments in that document.
|
CONVERT_TO_SEPARATE_FILES
Each input document needs to be converted to a seperate output document.
|
CONVERT_TO_SINGLE_FILE
All input documents need to be converted to a single output document.
|
CREATE_NEW_FILE_AND_ATTACH_ALL_AS_ORIGINAL
A blank new document needs to be created and all input documents needs to
be included as file attachments in that new document.
|
Modifier and Type | Method and Description |
---|---|
static ConversionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConversionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConversionMode CONVERT_TO_SINGLE_FILE
public static final ConversionMode CONVERT_TO_SEPARATE_FILES
public static final ConversionMode CONVERT_FIRST_FILE_AND_ATTACH_REST_AS_ORIGINAL
public static final ConversionMode CREATE_NEW_FILE_AND_ATTACH_ALL_AS_ORIGINAL
public static ConversionMode[] values()
for (ConversionMode c : ConversionMode.values()) System.out.println(c);
public static ConversionMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null