public static enum LegendLayout.Corner extends Enum<LegendLayout.Corner>
Enum Constant and Description |
---|
BOTTOM_LEFT |
BOTTOM_RIGHT |
TOP_LEFT |
TOP_RIGHT |
Modifier and Type | Method and Description |
---|---|
static LegendLayout.Corner |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LegendLayout.Corner[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LegendLayout.Corner TOP_LEFT
public static final LegendLayout.Corner TOP_RIGHT
public static final LegendLayout.Corner BOTTOM_LEFT
public static final LegendLayout.Corner BOTTOM_RIGHT
public static LegendLayout.Corner[] values()
for (LegendLayout.Corner c : LegendLayout.Corner.values()) System.out.println(c);
public static LegendLayout.Corner 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 © 2018. All rights reserved.