public static enum Overlay.LineStyle extends java.lang.Enum<Overlay.LineStyle>
Enum Constant and Description |
---|
DASH |
DASH_DOT |
DASH_DOT_DOT |
DOT |
SOLID |
Modifier and Type | Field and Description |
---|---|
android.graphics.PathEffect |
effect |
int |
index |
Modifier and Type | Method and Description |
---|---|
static Overlay.LineStyle |
get(int index) |
static Overlay.LineStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Overlay.LineStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Overlay.LineStyle SOLID
public static final Overlay.LineStyle DASH
public static final Overlay.LineStyle DOT
public static final Overlay.LineStyle DASH_DOT
public static final Overlay.LineStyle DASH_DOT_DOT
public static Overlay.LineStyle[] values()
for (Overlay.LineStyle c : Overlay.LineStyle.values()) System.out.println(c);
public static Overlay.LineStyle valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static Overlay.LineStyle get(int index)