public static enum WorldMapView.SelectionMode extends java.lang.Enum<WorldMapView.SelectionMode>
| Enum Constant and Description |
|---|
MULTIPLE
The multiple selection mode allows the user to select several countries and locations at the
same time.
|
SINGLE
The single selection mode allows the user to always only select one country and one location
at a time.
|
| Modifier and Type | Method and Description |
|---|---|
static WorldMapView.SelectionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WorldMapView.SelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorldMapView.SelectionMode SINGLE
public static final WorldMapView.SelectionMode MULTIPLE
public static WorldMapView.SelectionMode[] values()
for (WorldMapView.SelectionMode c : WorldMapView.SelectionMode.values()) System.out.println(c);
public static WorldMapView.SelectionMode 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