|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Shapes>
lt.monarch.chart.style.enums.Shapes
public enum Shapes extends java.lang.Enum<Shapes> implements StyleObject
List of predefined shapes for rendering bars or other chart objects
| Enum Constant and Description |
|---|
BAR_SHAPE
Simple bar shape |
CIRCLE_SHAPE
Circle shape |
ELLIPSE_SHAPE
Ellipse shape |
ERROR_BAR_SHAPE
Error bar shape |
LINE_BAR_SHAPE
Line bar shape |
PYRAMID_SHAPE
Pyramid shape |
ROUNDED_BAR_SHAPE
Rounded bar shape |
X_SHAPE
X'es shape |
| Modifier and Type | Method and Description |
|---|---|
Shape2D |
getShape()
Gets the shape class |
static Shapes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Shapes[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Shapes BAR_SHAPE
public static final Shapes ROUNDED_BAR_SHAPE
public static final Shapes PYRAMID_SHAPE
public static final Shapes ERROR_BAR_SHAPE
public static final Shapes LINE_BAR_SHAPE
public static final Shapes ELLIPSE_SHAPE
public static final Shapes CIRCLE_SHAPE
public static final Shapes X_SHAPE
| Method Detail |
|---|
public static Shapes[] values()
for (Shapes c : Shapes.values()) System.out.println(c);
public static Shapes valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullpublic Shape2D getShape()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||