com.objex.progeny.anywhere.legend
Enum LEGEND_QUADRANTS

java.lang.Object
  extended by java.lang.Enum<LEGEND_QUADRANTS>
      extended by com.objex.progeny.anywhere.legend.LEGEND_QUADRANTS
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LEGEND_QUADRANTS>

public enum LEGEND_QUADRANTS
extends java.lang.Enum<LEGEND_QUADRANTS>
implements java.io.Serializable


Enum Constant Summary
QUAD_1
           
QUAD_1_DOT
           
QUAD_1_SQUARE
           
QUAD_2
           
QUAD_2_DOT
           
QUAD_2_SQAURE
           
QUAD_3
           
QUAD_3_DOT
           
QUAD_3_SQUARE
           
QUAD_4
           
QUAD_4_DOT
           
QUAD_4_SQUARE
           
QUAD_CENTER_DOT
           
QUAD_CENTER_SQUARE
           
QUAD_HORZLINE
           
QUAD_QUESTIONMARK
           
QUAD_VERTLINE
           
 
Method Summary
static LEGEND_QUADRANTS valueOf(int ai_quad)
           
static LEGEND_QUADRANTS valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LEGEND_QUADRANTS[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

QUAD_1

public static final LEGEND_QUADRANTS QUAD_1

QUAD_2

public static final LEGEND_QUADRANTS QUAD_2

QUAD_3

public static final LEGEND_QUADRANTS QUAD_3

QUAD_4

public static final LEGEND_QUADRANTS QUAD_4

QUAD_1_DOT

public static final LEGEND_QUADRANTS QUAD_1_DOT

QUAD_1_SQUARE

public static final LEGEND_QUADRANTS QUAD_1_SQUARE

QUAD_2_DOT

public static final LEGEND_QUADRANTS QUAD_2_DOT

QUAD_2_SQAURE

public static final LEGEND_QUADRANTS QUAD_2_SQAURE

QUAD_3_DOT

public static final LEGEND_QUADRANTS QUAD_3_DOT

QUAD_3_SQUARE

public static final LEGEND_QUADRANTS QUAD_3_SQUARE

QUAD_4_DOT

public static final LEGEND_QUADRANTS QUAD_4_DOT

QUAD_4_SQUARE

public static final LEGEND_QUADRANTS QUAD_4_SQUARE

QUAD_CENTER_DOT

public static final LEGEND_QUADRANTS QUAD_CENTER_DOT

QUAD_CENTER_SQUARE

public static final LEGEND_QUADRANTS QUAD_CENTER_SQUARE

QUAD_VERTLINE

public static final LEGEND_QUADRANTS QUAD_VERTLINE

QUAD_HORZLINE

public static final LEGEND_QUADRANTS QUAD_HORZLINE

QUAD_QUESTIONMARK

public static final LEGEND_QUADRANTS QUAD_QUESTIONMARK
Method Detail

values

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

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

valueOf

public static LEGEND_QUADRANTS 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

valueOf

public static LEGEND_QUADRANTS valueOf(int ai_quad)