public static enum Paint.Style extends Enum<Paint.Style>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final Paint.Style FILL
public static final Paint.Style STROKE
public static final Paint.Style FILL_AND_STROKE
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 nameNullPointerException
- if the argument is null