com.google.android.maps
Enum MapView.ReticleDrawMode

java.lang.Object
  extended by java.lang.Enum<MapView.ReticleDrawMode>
      extended by com.google.android.maps.MapView.ReticleDrawMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MapView.ReticleDrawMode>
Enclosing class:
MapView

public static enum MapView.ReticleDrawMode
extends java.lang.Enum<MapView.ReticleDrawMode>

Allow the user to specify the mode in which the reticle is drawn.


Enum Constant Summary
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.
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DRAW_RETICLE_OVER

public static final MapView.ReticleDrawMode DRAW_RETICLE_OVER
Draw the Reticle over all the overlays.


DRAW_RETICLE_UNDER

public static final MapView.ReticleDrawMode DRAW_RETICLE_UNDER
Draw the Reticle before the overlays so it's effectively under them.


DRAW_RETICLE_NEVER

public static final MapView.ReticleDrawMode DRAW_RETICLE_NEVER
Never draw the Reticle.

Method Detail

values

public static MapView.ReticleDrawMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MapView.ReticleDrawMode c : MapView.ReticleDrawMode.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MapView.ReticleDrawMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null