public enum LabelColor extends Enum<LabelColor>
| Enum Constant and Description |
|---|
BLACK
Weather labels will be displayed as black text with a white border.
|
WHITE
Weather labels will be displayed as white text with a black border.
|
| Modifier and Type | Method and Description |
|---|---|
static LabelColor |
fromValue(String type) |
String |
toString() |
String |
value() |
static LabelColor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LabelColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LabelColor BLACK
public static final LabelColor WHITE
public static LabelColor[] values()
for (LabelColor c : LabelColor.values()) System.out.println(c);
public static LabelColor 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 nullpublic String value()
public static LabelColor fromValue(String type)
public String toString()
toString in class Enum<LabelColor>Copyright © 2011-2014 GWT Maps API V3. All Rights Reserved.