|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<RadioButtonEnum> org.proteinshader.gui.enums.RadioButtonEnum
public enum RadioButtonEnum
Provides an enumeration of the types of radio buttons in the RadioPanel class.
Enum Constant Summary | |
---|---|
GLOBAL
The radio button labeled as "Global:". |
|
HELICES
The radio button labeled as "Helices:". |
|
LOOPS
The radio button labeled as "Loops:". |
|
SELECTED
The radio button labeled as "Selected:". |
|
STRANDS
The radio button labeled as "Strands:". |
Method Summary | |
---|---|
static RadioButtonEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RadioButtonEnum[] |
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 RadioButtonEnum SELECTED
public static final RadioButtonEnum HELICES
public static final RadioButtonEnum STRANDS
public static final RadioButtonEnum LOOPS
public static final RadioButtonEnum GLOBAL
Method Detail |
---|
public static final RadioButtonEnum[] values()
for(RadioButtonEnum c : RadioButtonEnum.values()) System.out.println(c);
public static RadioButtonEnum 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 |