Uses of Class
com.jme3.input.event.TouchEvent.Type

Packages that use TouchEvent.Type
com.jme3.input.event The com.jme3.input.event package contains low-level input events. 
 

Uses of TouchEvent.Type in com.jme3.input.event
 

Methods in com.jme3.input.event that return TouchEvent.Type
 TouchEvent.Type TouchEvent.getType()
          Returns the type of touch event.
static TouchEvent.Type TouchEvent.Type.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TouchEvent.Type[] TouchEvent.Type.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.jme3.input.event with parameters of type TouchEvent.Type
 void TouchEvent.set(TouchEvent.Type type)
           
 void TouchEvent.set(TouchEvent.Type type, float x, float y, float deltax, float deltay)
           
 

Constructors in com.jme3.input.event with parameters of type TouchEvent.Type
TouchEvent(TouchEvent.Type type, float x, float y, float deltax, float deltay)