|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ResidueMode> org.proteinshader.structure.visitor.enums.ResidueMode
public enum ResidueMode
Provides an enumeration that can be used to control the traversal pattern of a Visitor object.
Enum Constant Summary | |
---|---|
AA_AND_HETEROGENS
Visit AminoAcids first and then visit Heterogens. |
|
AA_AND_WATERS
Visit AminoAcids first and then visit Waters. |
|
ALL
Visit all Residue types. |
|
AMINO_ACIDS
Visit only AminoAcids. |
|
HET_AND_WATERS
Visit Heterogens first and then Waters. |
|
HETEROGENS
Visit only Heterogens. |
|
NONE
Visit no Residues. |
|
WATERS
Visit only Waters. |
Method Summary | |
---|---|
static ResidueMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ResidueMode[] |
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, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ResidueMode ALL
public static final ResidueMode AMINO_ACIDS
public static final ResidueMode AA_AND_WATERS
public static final ResidueMode AA_AND_HETEROGENS
public static final ResidueMode HETEROGENS
public static final ResidueMode WATERS
public static final ResidueMode HET_AND_WATERS
public static final ResidueMode NONE
Method Detail |
---|
public static final ResidueMode[] values()
for(ResidueMode c : ResidueMode.values()) System.out.println(c);
public static ResidueMode 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
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |