public static enum Collision.PointState extends java.lang.Enum<Collision.PointState>
Enum Constant and Description |
---|
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
|
Modifier and Type | Method and Description |
---|---|
static Collision.PointState |
valueOf(java.lang.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.
|
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
public static Collision.PointState[] values()
for (Collision.PointState c : Collision.PointState.values()) System.out.println(c);
public static Collision.PointState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2017. All Rights Reserved.