public enum AdapterOutputType extends java.lang.Enum<AdapterOutputType>
Enum Constant and Description |
---|
Html
The adapter can render files as HTML.
|
MultipartMime
The adapter can render files as multipart MIME documents,
a.k.a.
|
Original
The adapter can output the original format.
|
Pdf
The adapter can render files as PDF.
|
Text
The adapter can convert files into plain text.
|
Xml
The adapter can convert files into XML.
|
Modifier and Type | Method and Description |
---|---|
int |
getOutputType()
The output type as an integer value.
|
static AdapterOutputType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdapterOutputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdapterOutputType Original
public static final AdapterOutputType Text
public static final AdapterOutputType Html
public static final AdapterOutputType MultipartMime
public static final AdapterOutputType Pdf
public static final AdapterOutputType Xml
public static AdapterOutputType[] values()
for (AdapterOutputType c : AdapterOutputType.values()) System.out.println(c);
public static AdapterOutputType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getOutputType()