public static enum ShapeStroke.LineJoinType extends java.lang.Enum<ShapeStroke.LineJoinType>
| Modifier and Type | Method and Description |
|---|---|
android.graphics.Paint.Join |
toPaintJoin() |
static ShapeStroke.LineJoinType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShapeStroke.LineJoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShapeStroke.LineJoinType MITER
public static final ShapeStroke.LineJoinType ROUND
public static final ShapeStroke.LineJoinType BEVEL
public static ShapeStroke.LineJoinType[] values()
for (ShapeStroke.LineJoinType c : ShapeStroke.LineJoinType.values()) System.out.println(c);
public static ShapeStroke.LineJoinType 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 nullpublic android.graphics.Paint.Join toPaintJoin()