public static enum AbstractLegend.SortingType extends Enum<AbstractLegend.SortingType>
| Enum Constant and Description |
|---|
ascending |
descending |
reverse |
| Modifier and Type | Method and Description |
|---|---|
static AbstractLegend.SortingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractLegend.SortingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractLegend.SortingType ascending
public static final AbstractLegend.SortingType descending
public static final AbstractLegend.SortingType reverse
public static AbstractLegend.SortingType[] values()
for (AbstractLegend.SortingType c : AbstractLegend.SortingType.values()) System.out.println(c);
public static AbstractLegend.SortingType 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 © 2014 JBoss by Red Hat. All rights reserved.