public enum CollisionFunctionType extends Enum<CollisionFunctionType>
CollisionFunction
Enum Constant and Description |
---|
LINEAR
Linear computation.
|
Modifier and Type | Method and Description |
---|---|
static CollisionFunctionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CollisionFunctionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollisionFunctionType LINEAR
public static CollisionFunctionType[] values()
for (CollisionFunctionType c : CollisionFunctionType.values()) System.out.println(c);
public static CollisionFunctionType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2017 Byron 3D Games Studio. All rights reserved.