|
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.Style>
android.graphics.Paint.Style
public static enum Paint.Style
The Style specifies if the primitive being drawn is filled, stroked, or both (in the same color). The default is FILL.
| Enum Constant Summary | |
|---|---|
FILL
Geometry and text drawn with this style will be filled, ignoring all stroke-related settings in the paint. |
|
FILL_AND_STROKE
Geometry and text drawn with this style will be both filled and stroked at the same time, respecting the stroke-related fields on the paint. |
|
STROKE
Geometry and text drawn with this style will be stroked, respecting the stroke-related fields on the paint. |
|
| Field Summary | |
|---|---|
(package private) int |
nativeInt
|
| Method Summary | |
|---|---|
static Paint.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Paint.Style[] |
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.Style FILL
public static final Paint.Style STROKE
public static final Paint.Style FILL_AND_STROKE
| Field Detail |
|---|
final int nativeInt
| Method Detail |
|---|
public static Paint.Style[] values()
for (Paint.Style c : Paint.Style.values()) System.out.println(c);
public static Paint.Style 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 | |||||||||