public enum PointStyle extends Enum<PointStyle> implements Key
Enum Constant and Description |
---|
circle |
cross |
crossRot |
dash |
line |
rect |
rectRot |
rectRounded |
star |
triangle |
Modifier and Type | Method and Description |
---|---|
static PointStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PointStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PointStyle circle
public static final PointStyle cross
public static final PointStyle crossRot
public static final PointStyle dash
public static final PointStyle line
public static final PointStyle rect
public static final PointStyle rectRounded
public static final PointStyle rectRot
public static final PointStyle star
public static final PointStyle triangle
public static PointStyle[] values()
for (PointStyle c : PointStyle.values()) System.out.println(c);
public static PointStyle 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 null