public static enum DocumentSource.Type extends java.lang.Enum<DocumentSource.Type>
Enum Constant and Description |
---|
AEA
Aea document source.
|
AES
Aes document source.
|
DOC
Doc document source.
|
HTML
Html document source.
|
KNOL
Knol document source.
|
ODT
Odt document source.
|
PLAINTEXT
PlainText document source.
|
RTF
Rtf document source.
|
SRT
Srt document source.
|
SUB
Sub document source.
|
WIKI
Wiki document source.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toValue()
Returns the value used in the XML.
|
static DocumentSource.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DocumentSource.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentSource.Type AEA
public static final DocumentSource.Type AES
public static final DocumentSource.Type DOC
public static final DocumentSource.Type HTML
public static final DocumentSource.Type KNOL
public static final DocumentSource.Type ODT
public static final DocumentSource.Type PLAINTEXT
public static final DocumentSource.Type RTF
public static final DocumentSource.Type SRT
public static final DocumentSource.Type SUB
public static final DocumentSource.Type WIKI
public static DocumentSource.Type[] values()
for (DocumentSource.Type c : DocumentSource.Type.values()) System.out.println(c);
public static DocumentSource.Type 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 java.lang.String toValue()