Serializable, Comparable<LegendPlacement>public enum LegendPlacement extends Enum<LegendPlacement>
| Enum Constant | Description |
|---|---|
INSIDE |
|
OUTSIDE |
|
OUTSIDEGRID |
| Modifier and Type | Method | Description |
|---|---|---|
String |
toString() |
|
static LegendPlacement |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static LegendPlacement[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LegendPlacement OUTSIDE
public static final LegendPlacement OUTSIDEGRID
public static final LegendPlacement INSIDE
public static LegendPlacement[] values()
for (LegendPlacement c : LegendPlacement.values()) System.out.println(c);
public static LegendPlacement 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 nullpublic String toString()
toString in class Enum<LegendPlacement>Copyright © 2018. All rights reserved.