public static enum GeoShapeStyle.JoinStyle extends Enum<GeoShapeStyle.JoinStyle>
GeoShapeStyle
's corners.Enum Constant and Description |
---|
BEVEL
The corner is cut off
|
MITER
Sharp/pointy corner.
|
ROUND
Rounded corner join
|
Modifier and Type | Method and Description |
---|---|
static GeoShapeStyle.JoinStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeoShapeStyle.JoinStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoShapeStyle.JoinStyle MITER
public static final GeoShapeStyle.JoinStyle BEVEL
public static final GeoShapeStyle.JoinStyle ROUND
public static GeoShapeStyle.JoinStyle[] values()
for (GeoShapeStyle.JoinStyle c : GeoShapeStyle.JoinStyle.values()) System.out.println(c);
public static GeoShapeStyle.JoinStyle 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