public static enum StyleConstants.ShapeKind extends java.lang.Enum<StyleConstants.ShapeKind>
Enum Constant and Description |
---|
CURVE |
ELLIPSOID |
LINEAR |
RECTANGULAR |
Modifier and Type | Method and Description |
---|---|
static StyleConstants.ShapeKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StyleConstants.ShapeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StyleConstants.ShapeKind ELLIPSOID
public static final StyleConstants.ShapeKind RECTANGULAR
public static final StyleConstants.ShapeKind LINEAR
public static final StyleConstants.ShapeKind CURVE
public static StyleConstants.ShapeKind[] values()
for (StyleConstants.ShapeKind c : StyleConstants.ShapeKind.values()) System.out.println(c);
public static StyleConstants.ShapeKind 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 null