|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Collision.PointState>
org.jbox2d.collision.Collision.PointState
public static enum Collision.PointState
This is used for determining the state of contact points.
Enum Constant Summary | |
---|---|
ADD_STATE
point was added in the update |
|
NULL_STATE
point does not exist |
|
PERSIST_STATE
point persisted across the update |
|
REMOVE_STATE
point was removed in the update |
Method Summary | |
---|---|
static Collision.PointState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Collision.PointState[] |
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 |
---|
public static final Collision.PointState NULL_STATE
public static final Collision.PointState ADD_STATE
public static final Collision.PointState PERSIST_STATE
public static final Collision.PointState REMOVE_STATE
Method Detail |
---|
public static Collision.PointState[] values()
for (Collision.PointState c : Collision.PointState.values()) System.out.println(c);
public static Collision.PointState valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |