public static enum AbstractQueryCommand.SortOutputFormat extends Enum<AbstractQueryCommand.SortOutputFormat>
Enum Constant and Description |
---|
LABEL |
MAXRANK
Rank by the length of the longest path from a root node.
|
MINRANK
Rank by the length of the shortest path from a root node.
|
Modifier and Type | Method and Description |
---|---|
static AbstractQueryCommand.SortOutputFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractQueryCommand.SortOutputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractQueryCommand.SortOutputFormat LABEL
public static final AbstractQueryCommand.SortOutputFormat MINRANK
public static final AbstractQueryCommand.SortOutputFormat MAXRANK
public static AbstractQueryCommand.SortOutputFormat[] values()
for (AbstractQueryCommand.SortOutputFormat c : AbstractQueryCommand.SortOutputFormat.values()) System.out.println(c);
public static AbstractQueryCommand.SortOutputFormat 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