|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Paint.Cap>
android.graphics.Paint.Cap
public static enum Paint.Cap
The Cap specifies the treatment for the beginning and ending of stroked lines and paths. The default is BUTT.
| Enum Constant Summary | |
|---|---|
BUTT
The stroke ends with the path, and does not project beyond it. |
|
ROUND
The stroke projects out as a square, with the center at the end of the path. |
|
SQUARE
The stroke projects out as a semicircle, with the center at the end of the path. |
|
| Field Summary | |
|---|---|
(package private) int |
nativeInt
|
| Method Summary | |
|---|---|
static Paint.Cap |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Paint.Cap[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Paint.Cap BUTT
public static final Paint.Cap ROUND
public static final Paint.Cap SQUARE
| Field Detail |
|---|
final int nativeInt
| Method Detail |
|---|
public static Paint.Cap[] values()
for (Paint.Cap c : Paint.Cap.values()) System.out.println(c);
public static Paint.Cap valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||