|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<AAPortionMode> org.proteinshader.structure.visitor.enums.AAPortionMode
public enum AAPortionMode
Provides an enumeration that can be used to control what portion of an AminoAcid the Visitor will traverse.
Enum Constant Summary | |
---|---|
BACKBONE
Visit only only the backbone Atoms of an AminoAcid, 'Backbone'. |
|
C
Visit only only the carbon Atom of the carbonyl group, 'C'. |
|
CA
Visit only only the alpha carbon Atom, 'CA'. |
|
ENTIRE_AA
Visit the entire AminoAcid, 'Entire AA'. |
|
H_OR_HN
Visit only the hydrogen Atom of the amino group nitrogen, 'H' or "HN'. |
|
HA_OR_1HA
Visit only the hydrogen Atom of the alpha carbon, 'HA' or "1HA'. |
|
N
Visit only only the nitrogen Atom of the amino group, 'N'. |
|
O
Visit only only the oxygen Atom of the carbonyl group, 'O'. |
|
OXT
Visit only only the terminal oxygen Atom of a Chain, 'OXT'. |
|
SIDE_CHAIN
Visit only only the side chain Atoms of an AminoAcid, 'Side Chain'. |
Method Summary | |
---|---|
String |
getMenuName()
Returns the name of the AAPortionMode in a form suitable for use in a menu. |
String |
toString()
Returns the name of the AAPortionMode in a form suitable for use in a menu. |
static AAPortionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AAPortionMode |
valueOfMenuName(String menuName)
Returns the AAPortionMode with the same menu name as the String given as an argument. |
static AAPortionMode[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AAPortionMode ENTIRE_AA
public static final AAPortionMode BACKBONE
public static final AAPortionMode SIDE_CHAIN
public static final AAPortionMode N
public static final AAPortionMode CA
public static final AAPortionMode C
public static final AAPortionMode HA_OR_1HA
public static final AAPortionMode H_OR_HN
public static final AAPortionMode O
public static final AAPortionMode OXT
Method Detail |
---|
public static final AAPortionMode[] values()
for(AAPortionMode c : AAPortionMode.values()) System.out.println(c);
public static AAPortionMode valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified namepublic String getMenuName()
public String toString()
toString
in class Enum<AAPortionMode>
public static AAPortionMode valueOfMenuName(String menuName)
IllegalArgumentException
- if the menu name does not match
a AAPortionMode.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |