Added in API level 1
Paint.Join
public
static
final
enum
Paint.Join
extends Enum<Paint.Join>
| java.lang.Object | ||
| ↳ | java.lang.Enum<android.graphics.Paint.Join> | |
| ↳ | android.graphics.Paint.Join | |
The Join specifies the treatment where lines and curve segments join on a stroked path. The default is MITER.
Summary
Enum values | |
|---|---|
Paint.Join |
BEVEL
The outer edges of a join meet with a straight line |
Paint.Join |
MITER
The outer edges of a join meet at a sharp angle |
Paint.Join |
ROUND
The outer edges of a join meet in a circular arc. |
Public methods | |
|---|---|
static
Paint.Join
|
valueOf(String name)
|
static
final
Join[]
|
values()
|
Inherited methods | |
|---|---|
Enum values
BEVEL
Added in API level 1
public static final Paint.Join BEVEL
The outer edges of a join meet with a straight line
MITER
Added in API level 1
public static final Paint.Join MITER
The outer edges of a join meet at a sharp angle
ROUND
Added in API level 1
public static final Paint.Join ROUND
The outer edges of a join meet in a circular arc.
Public methods
Content and code samples on this page are subject to the licenses described in the Content License. Java is a registered trademark of Oracle and/or its affiliates.