| Enum Constant and Description |
|---|
BUTT_CAP
The stroke is squared off at the endpoint of the path.
|
ROUND_CAP
A semicircular arc with a diameter equal to the line width is drawn around the endpoint and filled in.
|
SQUARE_CAP
The stroke continues beyond the endpoint of the path for a distance equal to half the line width and is squared off.
|
| Modifier and Type | Method and Description |
|---|---|
static LineCap |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LineCap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineCap BUTT_CAP
public static final LineCap ROUND_CAP
public static final LineCap SQUARE_CAP
public static LineCap[] values()
for (LineCap c : LineCap.values()) System.out.println(c);
public static LineCap 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