public static enum Paint.Style extends Enum<Paint.Style>
Enum Constant and Description |
---|
FILL |
FILL_AND_STROKE |
STROKE |
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.
|
clone, compareTo, equals, getDeclaringClass, getEnumValues, hashCode, name, ordinal, setEnumValues, toString, valueOf
public static final Paint.Style FILL
public static final Paint.Style FILL_AND_STROKE
public static final Paint.Style 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