net.sf.sotacs.navbar.api
Enum ItemMode

java.lang.Object
  extended by java.lang.Enum<ItemMode>
      extended by net.sf.sotacs.navbar.api.ItemMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ItemMode>

public enum ItemMode
extends java.lang.Enum<ItemMode>


Enum Constant Summary
OUT
           
OUT_OPEN
           
OUT_SEL
           
OVER
           
OVER_OPEN
           
OVER_SEL
           
 
Method Summary
 boolean isOpened()
           
 boolean isOver()
           
 boolean isSelected()
           
static ItemMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ItemMode[] 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

OUT

public static final ItemMode OUT

OUT_OPEN

public static final ItemMode OUT_OPEN

OUT_SEL

public static final ItemMode OUT_SEL

OVER

public static final ItemMode OVER

OVER_OPEN

public static final ItemMode OVER_OPEN

OVER_SEL

public static final ItemMode OVER_SEL
Method Detail

values

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

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

valueOf

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

isOpened

public boolean isOpened()

isOver

public boolean isOver()

isSelected

public boolean isSelected()