public enum GroupRotation extends java.lang.Enum<GroupRotation>
Enum Constant and Description |
---|
FerrisWheel
Attached nodes are moved to a position corresponding to the
master node's rotation angle, but they are node rotated.
|
IgnoreRotation
Attached nodes ignore the rotation angle applied to the master node.
|
RotateChildren
Attached nodes are rotated by the RotationAngle of
the group's master node and around its center.
|
Modifier and Type | Method and Description |
---|---|
static GroupRotation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GroupRotation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupRotation IgnoreRotation
public static final GroupRotation FerrisWheel
public static final GroupRotation RotateChildren
public static GroupRotation[] values()
for (GroupRotation c : GroupRotation.values()) System.out.println(c);
public static GroupRotation 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