org.proteinshader.gui.enums
Enum RadioButtonEnum

java.lang.Object
  extended by java.lang.Enum<RadioButtonEnum>
      extended by org.proteinshader.gui.enums.RadioButtonEnum
All Implemented Interfaces:
Serializable, Comparable<RadioButtonEnum>

public enum RadioButtonEnum
extends 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

SELECTED

public static final RadioButtonEnum SELECTED
The radio button labeled as "Selected:".


HELICES

public static final RadioButtonEnum HELICES
The radio button labeled as "Helices:".


STRANDS

public static final RadioButtonEnum STRANDS
The radio button labeled as "Strands:".


LOOPS

public static final RadioButtonEnum LOOPS
The radio button labeled as "Loops:".


GLOBAL

public static final RadioButtonEnum GLOBAL
The radio button labeled as "Global:".

Method Detail

values

public static final RadioButtonEnum[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(RadioButtonEnum c : RadioButtonEnum.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static RadioButtonEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name


Copyright © 2007-2008