public static enum StateMachines.OutputFormat extends Enum<StateMachines.OutputFormat>
| Enum Constant and Description |
|---|
Graphviz
Output format in Graphviz DOT language.
|
JSON
Output format as JSON.
|
XML
Output format as XML.
|
| Modifier and Type | Method and Description |
|---|---|
static StateMachines.OutputFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateMachines.OutputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateMachines.OutputFormat XML
public static final StateMachines.OutputFormat JSON
public static final StateMachines.OutputFormat Graphviz
public static StateMachines.OutputFormat[] values()
for (StateMachines.OutputFormat c : StateMachines.OutputFormat.values()) System.out.println(c);
public static StateMachines.OutputFormat 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 nullCopyright © 2015. All rights reserved.