Uses of Class
org.jbox2d.collision.shapes.ShapeType

Packages that use ShapeType
org.jbox2d.collision.shapes   
org.jbox2d.dynamics.contacts This package performs contact handling, and is essentially internal to JBox2d. 
 

Uses of ShapeType in org.jbox2d.collision.shapes
 

Fields in org.jbox2d.collision.shapes declared as ShapeType
 ShapeType Shape.m_type
           
 ShapeType ShapeDef.type
          Holds the shape type for down-casting.
 

Methods in org.jbox2d.collision.shapes that return ShapeType
 ShapeType Shape.getType()
          Get the type of this shape.
static ShapeType ShapeType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ShapeType[] ShapeType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of ShapeType in org.jbox2d.dynamics.contacts
 

Fields in org.jbox2d.dynamics.contacts declared as ShapeType
 ShapeType ContactRegister.s1
           
 ShapeType ContactRegister.s2
           
 

Methods in org.jbox2d.dynamics.contacts with parameters of type ShapeType
static void Contact.addType(ContactCreateFcn createFcn, ShapeType type1, ShapeType type2)