com.ls.widgets.map.utils
Enum PivotFactory.PivotPosition

java.lang.Object
  extended by java.lang.Enum<PivotFactory.PivotPosition>
      extended by com.ls.widgets.map.utils.PivotFactory.PivotPosition
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PivotFactory.PivotPosition>
Enclosing class:
PivotFactory

public static enum PivotFactory.PivotPosition
extends java.lang.Enum<PivotFactory.PivotPosition>


Enum Constant Summary
PIVOT_BOTTOM_CENTER
           
PIVOT_CENTER
           
PIVOT_TOP_LEFT
           
 
Method Summary
static PivotFactory.PivotPosition valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PivotFactory.PivotPosition[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PIVOT_TOP_LEFT

public static final PivotFactory.PivotPosition PIVOT_TOP_LEFT

PIVOT_CENTER

public static final PivotFactory.PivotPosition PIVOT_CENTER

PIVOT_BOTTOM_CENTER

public static final PivotFactory.PivotPosition PIVOT_BOTTOM_CENTER
Method Detail

values

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

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

valueOf

public static PivotFactory.PivotPosition 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