public static enum UserLocationMarkerManager.MarkerMode extends Enum<UserLocationMarkerManager.MarkerMode>
Enum Constant and Description |
---|
DIRECTIONAL_MARKER_VISIBLE
The mode where the directional marker is visible.
|
MARKER_HIDDEN
The mode where no marker is visible.
|
NON_DIRECTIONAL_MARKER_VISIBLE
The mode where the regular (non-directional) marker is visible.
|
Modifier and Type | Method and Description |
---|---|
static UserLocationMarkerManager.MarkerMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserLocationMarkerManager.MarkerMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserLocationMarkerManager.MarkerMode MARKER_HIDDEN
public static final UserLocationMarkerManager.MarkerMode NON_DIRECTIONAL_MARKER_VISIBLE
public static final UserLocationMarkerManager.MarkerMode DIRECTIONAL_MARKER_VISIBLE
public static UserLocationMarkerManager.MarkerMode[] values()
for (UserLocationMarkerManager.MarkerMode c : UserLocationMarkerManager.MarkerMode.values()) System.out.println(c);
public static UserLocationMarkerManager.MarkerMode 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