protected static enum AbstractQueryCommand.OutputFormat extends Enum<AbstractQueryCommand.OutputFormat>
Enum Constant and Description |
---|
DOT
Format output as dot graph
|
DOT_BFS
Format output as dot graph in bfs order
|
DOT_BFS_COMPACT
Format output as dot graph in bfs order, in a more compact format
|
DOT_COMPACT
Format output as dot graph, in a more compact format
|
JSON
Format output as JSON
|
LIST
Format output as list
|
THRIFT
Format output as Thrift binary
|
Modifier and Type | Method and Description |
---|---|
static AbstractQueryCommand.OutputFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractQueryCommand.OutputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractQueryCommand.OutputFormat LIST
public static final AbstractQueryCommand.OutputFormat DOT
public static final AbstractQueryCommand.OutputFormat DOT_COMPACT
public static final AbstractQueryCommand.OutputFormat DOT_BFS
public static final AbstractQueryCommand.OutputFormat DOT_BFS_COMPACT
public static final AbstractQueryCommand.OutputFormat JSON
public static final AbstractQueryCommand.OutputFormat THRIFT
public static AbstractQueryCommand.OutputFormat[] values()
for (AbstractQueryCommand.OutputFormat c : AbstractQueryCommand.OutputFormat.values()) System.out.println(c);
public static AbstractQueryCommand.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 null