public static enum MapView.ReticleDrawMode extends java.lang.Enum<MapView.ReticleDrawMode>
Enum Constant and Description |
---|
DRAW_RETICLE_NEVER
Never draw the Reticle.
|
DRAW_RETICLE_OVER
Draw the Reticle over all the overlays.
|
DRAW_RETICLE_UNDER
Draw the Reticle before the overlays so it's effectively under them.
|
Modifier and Type | Method and Description |
---|---|
static MapView.ReticleDrawMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MapView.ReticleDrawMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapView.ReticleDrawMode DRAW_RETICLE_OVER
public static final MapView.ReticleDrawMode DRAW_RETICLE_UNDER
public static final MapView.ReticleDrawMode DRAW_RETICLE_NEVER
public static MapView.ReticleDrawMode[] values()
for (MapView.ReticleDrawMode c : MapView.ReticleDrawMode.values()) System.out.println(c);
public static MapView.ReticleDrawMode 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