com.esri.map
Enum JMap.AnimationMode

java.lang.Object
  extended by java.lang.Enum<JMap.AnimationMode>
      extended by com.esri.map.JMap.AnimationMode
All Implemented Interfaces:
Serializable, Comparable<JMap.AnimationMode>
Enclosing class:
JMap

public static enum JMap.AnimationMode
extends Enum<JMap.AnimationMode>

Different animation modes controlling zoom animations.


Enum Constant Summary
ANIMATE
          Use zoom animation
NONE
          Do not animate when zooming in or out.
 
Method Summary
static JMap.AnimationMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static JMap.AnimationMode[] 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

ANIMATE

public static final JMap.AnimationMode ANIMATE
Use zoom animation


NONE

public static final JMap.AnimationMode NONE
Do not animate when zooming in or out.

Method Detail

values

public static JMap.AnimationMode[] 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 (JMap.AnimationMode c : JMap.AnimationMode.values())
    System.out.println(c);

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

valueOf

public static JMap.AnimationMode valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2012. All Rights Reserved.