org.jwalk.out
Enum Edition

java.lang.Object
  extended by java.lang.Enum<Edition>
      extended by org.jwalk.out.Edition
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Edition>

public enum Edition
extends java.lang.Enum<Edition>

Edition enumerates the different kinds of Report and Question. This enumeration allows client programs to distinguish different kinds of Report and Question more easily.

Version:
1.0
Author:
Anthony Simons

Enum Constant Summary
ALGEBRA_REPORT
           
CONFIRM_DIALOG
           
CYCLE_REPORT
           
NOTIFY_DIALOG
           
PROTOCOL_REPORT
           
STATE_REPORT
           
SUMMARY_REPORT
           
 
Method Summary
static Edition valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Edition[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PROTOCOL_REPORT

public static final Edition PROTOCOL_REPORT

ALGEBRA_REPORT

public static final Edition ALGEBRA_REPORT

STATE_REPORT

public static final Edition STATE_REPORT

CYCLE_REPORT

public static final Edition CYCLE_REPORT

SUMMARY_REPORT

public static final Edition SUMMARY_REPORT

CONFIRM_DIALOG

public static final Edition CONFIRM_DIALOG

NOTIFY_DIALOG

public static final Edition NOTIFY_DIALOG
Method Detail

values

public static Edition[] 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 (Edition c : Edition.values())
    System.out.println(c);

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

valueOf

public static Edition 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