com.jmex.swt.input
Enum SWTMouseInput.EventType

java.lang.Object
  extended by java.lang.Enum<SWTMouseInput.EventType>
      extended by com.jmex.swt.input.SWTMouseInput.EventType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SWTMouseInput.EventType>
Enclosing class:
SWTMouseInput

static enum SWTMouseInput.EventType
extends java.lang.Enum<SWTMouseInput.EventType>


Enum Constant Summary
MOUSE_DRAGGED
           
MOUSE_MOVED
           
MOUSE_PRESSED
           
MOUSE_RELEASED
           
MOUSE_WHEEL
           
 
Method Summary
static SWTMouseInput.EventType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SWTMouseInput.EventType[] 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

MOUSE_DRAGGED

public static final SWTMouseInput.EventType MOUSE_DRAGGED

MOUSE_MOVED

public static final SWTMouseInput.EventType MOUSE_MOVED

MOUSE_PRESSED

public static final SWTMouseInput.EventType MOUSE_PRESSED

MOUSE_RELEASED

public static final SWTMouseInput.EventType MOUSE_RELEASED

MOUSE_WHEEL

public static final SWTMouseInput.EventType MOUSE_WHEEL
Method Detail

values

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

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

valueOf

public static SWTMouseInput.EventType 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