public enum PlotOrientationEnum extends Enum<PlotOrientationEnum> implements NamedEnum
Enum Constant and Description |
---|
HORIZONTAL |
VERTICAL |
Modifier and Type | Method and Description |
---|---|
static PlotOrientationEnum |
getByName(String name) |
static PlotOrientationEnum |
getByValue(org.jfree.chart.plot.PlotOrientation orientation)
Deprecated.
Used only by deprecated serialized fields.
|
String |
getName() |
org.jfree.chart.plot.PlotOrientation |
getOrientation() |
static PlotOrientationEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlotOrientationEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlotOrientationEnum HORIZONTAL
public static final PlotOrientationEnum VERTICAL
public static PlotOrientationEnum[] values()
for (PlotOrientationEnum c : PlotOrientationEnum.values()) System.out.println(c);
public static PlotOrientationEnum 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 final org.jfree.chart.plot.PlotOrientation getOrientation()
public static PlotOrientationEnum getByName(String name)
public static PlotOrientationEnum getByValue(org.jfree.chart.plot.PlotOrientation orientation)
Copyright © 2017. All rights reserved.