public enum CameraSplineType extends java.lang.Enum<CameraSplineType>
| Enum Constant and Description |
|---|
CATMULL_ROM |
LINEAR |
| Modifier and Type | Method and Description |
|---|---|
static CameraSplineType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CameraSplineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CameraSplineType CATMULL_ROM
public static final CameraSplineType LINEAR
public static CameraSplineType[] values()
for (CameraSplineType c : CameraSplineType.values()) System.out.println(c);
public static CameraSplineType 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 null