- java.lang.Object
-
- java.lang.Enum<PolarAxisLocation>
-
- org.jfree.chart.plot.PolarAxisLocation
-
- All Implemented Interfaces:
Serializable,Comparable<PolarAxisLocation>
public enum PolarAxisLocation extends Enum<PolarAxisLocation>
Used to indicate the location of an axis on aPolarPlot.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EAST_ABOVEAxis above east.EAST_BELOWAxis below east.NORTH_LEFTAxis left of north.NORTH_RIGHTAxis right of north.SOUTH_LEFTAxis left of south.SOUTH_RIGHTAxis right of south.WEST_ABOVEAxis above west.WEST_BELOWAxis below west.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PolarAxisLocationvalueOf(String name)Returns the enum constant of this type with the specified name.static PolarAxisLocation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORTH_LEFT
public static final PolarAxisLocation NORTH_LEFT
Axis left of north.
-
NORTH_RIGHT
public static final PolarAxisLocation NORTH_RIGHT
Axis right of north.
-
SOUTH_LEFT
public static final PolarAxisLocation SOUTH_LEFT
Axis left of south.
-
SOUTH_RIGHT
public static final PolarAxisLocation SOUTH_RIGHT
Axis right of south.
-
EAST_ABOVE
public static final PolarAxisLocation EAST_ABOVE
Axis above east.
-
EAST_BELOW
public static final PolarAxisLocation EAST_BELOW
Axis below east.
-
WEST_ABOVE
public static final PolarAxisLocation WEST_ABOVE
Axis above west.
-
WEST_BELOW
public static final PolarAxisLocation WEST_BELOW
Axis below west.
-
-
Method Detail
-
values
public static PolarAxisLocation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PolarAxisLocation c : PolarAxisLocation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PolarAxisLocation valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-