|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<RegionMode> org.proteinshader.structure.visitor.enums.RegionMode
public enum RegionMode
Provides an enumeration that can be used to control whether a Visitor object traverses Regions (Helices or BetaStrands).
Enum Constant Summary | |
---|---|
ALL_REGIONS
Visit Helices, BetaStrands, and all Residues of a Chain. |
|
BETA_STRANDS
Visit BetaStrands only. |
|
HELICES
Visit Helices only. |
|
LOOPS
Visit Loops only. |
|
NO_REGIONS
Visit Residues of a Chain, but no Regions. |
Method Summary | |
---|---|
static RegionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RegionMode[] |
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 RegionMode NO_REGIONS
public static final RegionMode LOOPS
public static final RegionMode HELICES
public static final RegionMode BETA_STRANDS
public static final RegionMode ALL_REGIONS
Method Detail |
---|
public static final RegionMode[] values()
for(RegionMode c : RegionMode.values()) System.out.println(c);
public static RegionMode 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 |