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