public static enum StyleConstants.ShapeKind extends Enum<StyleConstants.ShapeKind>
| Enum Constant and Description |
|---|
CURVE |
ELLIPSOID |
LINEAR |
RECTANGULAR |
| Modifier and Type | Method and Description |
|---|---|
static StyleConstants.ShapeKind |
valueOf(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(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 © 2015. All rights reserved.