com.yobotics.simulationconstructionset.gui
Enum YoEntryBoxTest.LargeEnum

java.lang.Object
  extended by java.lang.Enum<YoEntryBoxTest.LargeEnum>
      extended by com.yobotics.simulationconstructionset.gui.YoEntryBoxTest.LargeEnum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<YoEntryBoxTest.LargeEnum>
Enclosing class:
YoEntryBoxTest

public static enum YoEntryBoxTest.LargeEnum
extends java.lang.Enum<YoEntryBoxTest.LargeEnum>


Enum Constant Summary
A_LARGER_STILL_ENUMERATION_STRING
           
A_YET_LARGER_AND_STILL_MORE_VERBOSE_DESCRIPTION_OF_AN_ENUMERATION_STATE
           
THE_FOLLOWING_IS_TAKEN_FROM_RAIBERT_1986_ONE_PART_OF_THE_CONTROL_SYSTEM_EXCITED_THE_CYCLIC_MOTION_THAT_UNDERLIES_RUNNING_WHILE_REGULATING_THE_HEIGHT_TO_WHICH_THE_MACHINE_HOPPED
           
THIS_IS_LARGE
           
THIS_IS_LARGER
           
 
Method Summary
static YoEntryBoxTest.LargeEnum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static YoEntryBoxTest.LargeEnum[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

THIS_IS_LARGE

public static final YoEntryBoxTest.LargeEnum THIS_IS_LARGE

THIS_IS_LARGER

public static final YoEntryBoxTest.LargeEnum THIS_IS_LARGER

A_LARGER_STILL_ENUMERATION_STRING

public static final YoEntryBoxTest.LargeEnum A_LARGER_STILL_ENUMERATION_STRING

A_YET_LARGER_AND_STILL_MORE_VERBOSE_DESCRIPTION_OF_AN_ENUMERATION_STATE

public static final YoEntryBoxTest.LargeEnum A_YET_LARGER_AND_STILL_MORE_VERBOSE_DESCRIPTION_OF_AN_ENUMERATION_STATE

THE_FOLLOWING_IS_TAKEN_FROM_RAIBERT_1986_ONE_PART_OF_THE_CONTROL_SYSTEM_EXCITED_THE_CYCLIC_MOTION_THAT_UNDERLIES_RUNNING_WHILE_REGULATING_THE_HEIGHT_TO_WHICH_THE_MACHINE_HOPPED

public static final YoEntryBoxTest.LargeEnum THE_FOLLOWING_IS_TAKEN_FROM_RAIBERT_1986_ONE_PART_OF_THE_CONTROL_SYSTEM_EXCITED_THE_CYCLIC_MOTION_THAT_UNDERLIES_RUNNING_WHILE_REGULATING_THE_HEIGHT_TO_WHICH_THE_MACHINE_HOPPED
Method Detail

values

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

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

valueOf

public static YoEntryBoxTest.LargeEnum valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null