|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<TreeFormat>
com.tyenki.tree.TreeFormat
public enum TreeFormat
An enumerated list of the possible output formats.
| Enum Constant Summary | |
|---|---|
ATOM
For an Atom 1.0 based tree format. |
|
COMPREHENSIVE
For the comprehensive XML Tree format. |
|
CONCISE
For the concise XML Tree format. |
|
JSON
For a json tree format. |
|
| Method Summary | |
|---|---|
static TreeFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TreeFormat[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final TreeFormat CONCISE
public static final TreeFormat COMPREHENSIVE
public static final TreeFormat ATOM
public static final TreeFormat JSON
| Method Detail |
|---|
public static TreeFormat[] values()
for (TreeFormat c : TreeFormat.values()) System.out.println(c);
public static TreeFormat valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||