public static enum PolylineOptions.ColorType extends java.lang.Enum<PolylineOptions.ColorType>
| Enum Constant and Description |
|---|
LINE_COLOR_ARGB
32bit ARGB颜色
|
LINE_COLOR_NONE
未设置颜色类型
|
LINE_COLOR_TEXTURE
纹理图片里的颜色索引
|
| Modifier and Type | Method and Description |
|---|---|
static PolylineOptions.ColorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PolylineOptions.ColorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolylineOptions.ColorType LINE_COLOR_NONE
public static final PolylineOptions.ColorType LINE_COLOR_TEXTURE
public static final PolylineOptions.ColorType LINE_COLOR_ARGB
public static PolylineOptions.ColorType[] values()
for (PolylineOptions.ColorType c : PolylineOptions.ColorType.values()) System.out.println(c);
public static PolylineOptions.ColorType 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 null