public enum LineJoinStyle extends java.lang.Enum<LineJoinStyle>
| Enum Constant and Description |
|---|
Bevel
Specifies the corners where the two lines intersect are cut off at a 45 degree angle.
|
Miter
Specifies the corners where the two lines intersect are squared off.
|
Round
Specifies the corners where the two lines intersect are rounded.
|
| Modifier and Type | Method and Description |
|---|---|
static LineJoinStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LineJoinStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineJoinStyle Round
public static final LineJoinStyle Miter
public static final LineJoinStyle Bevel
public static LineJoinStyle[] values()
for (LineJoinStyle c : LineJoinStyle.values()) System.out.println(c);
public static LineJoinStyle 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