public static enum SelectionRotater.RotationCenter extends java.lang.Enum<SelectionRotater.RotationCenter>
Enum Constant and Description |
---|
BaseOfHelix |
CenterOfHelix |
CenterOfMass |
CustomNuc |
CustomXY |
Default
Selects BaseOfHelix or CenterOfMass if there is no helix.
|
Modifier and Type | Method and Description |
---|---|
static SelectionRotater.RotationCenter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SelectionRotater.RotationCenter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectionRotater.RotationCenter BaseOfHelix
public static final SelectionRotater.RotationCenter CenterOfHelix
public static final SelectionRotater.RotationCenter CenterOfMass
public static final SelectionRotater.RotationCenter CustomNuc
public static final SelectionRotater.RotationCenter CustomXY
public static final SelectionRotater.RotationCenter Default
public static SelectionRotater.RotationCenter 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 nullpublic static SelectionRotater.RotationCenter[] values()
for (SelectionRotater.RotationCenter c : SelectionRotater.RotationCenter.values()) System.out.println(c);