|
sdr 0.6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<DancerPath.PointOfRotation>
net.cscott.sdr.calls.DancerPath.PointOfRotation
public static enum DancerPath.PointOfRotation
In order to have a method of discussing the various motions encountered in square dance choreography, Lynette Bellini identified several points of rotation:
(From Lynette Bellini's Rules of Flow.)
| Enum Constant Summary | |
|---|---|
FOUR_DANCERS
The point of rotation is about a point in the center of four dancers. |
|
SINGLE_DANCER
The point of rotation is about the center of a single dancer, as in the call roll. |
|
SQUARE_CENTER
The point of rotation is about the center point of the square. |
|
TWO_DANCERS
The point of rotation is about a point between two dancers. |
|
| Method Summary | |
|---|---|
static DancerPath.PointOfRotation |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DancerPath.PointOfRotation[] |
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 DancerPath.PointOfRotation SINGLE_DANCER
public static final DancerPath.PointOfRotation TWO_DANCERS
public static final DancerPath.PointOfRotation FOUR_DANCERS
public static final DancerPath.PointOfRotation SQUARE_CENTER
| Method Detail |
|---|
public static DancerPath.PointOfRotation[] values()
for (DancerPath.PointOfRotation c : DancerPath.PointOfRotation.values()) System.out.println(c);
public static DancerPath.PointOfRotation 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
|
sdr 0.6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||