public enum LineJoin extends Enum<LineJoin>
| Enum Constant and Description |
|---|
BEVEL
Fills an additional triangular area between the common endpoint of connected segments, and
the separate outside rectangular corners of each segment.
|
MITER
Connected segments are joined by extending their outside edges to connect at a single point,
with the effect of filling an additional lozenge-shaped area.
|
ROUND
Rounds off the corners of a shape by filling an additional sector of disc centered at the
common endpoint of connected segments.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static LineJoin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineJoin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineJoin BEVEL
public static final LineJoin MITER
public static final LineJoin ROUND
public static LineJoin[] values()
for (LineJoin c : LineJoin.values()) System.out.println(c);
public static LineJoin 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 © 2018 Regenstrief Center for Biomedical Informatics. All rights reserved.