org.bibalex.daf.managers
Enum MainController.Views

java.lang.Object
  extended by java.lang.Enum<MainController.Views>
      extended by org.bibalex.daf.managers.MainController.Views
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MainController.Views>
Enclosing class:
MainController

public static enum MainController.Views
extends java.lang.Enum<MainController.Views>

An enumeration listing the different views in the system.


Enum Constant Summary
AdminManager
          The Administration View.
ArchivingManager
          The Archiving Manager View.
CheckInManager
          The Check-In Manager View.
PhaseManager
          The Phase Manager View.
ReportingManager
          The Reporting Manager View.
 
Method Summary
static MainController.Views valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MainController.Views[] 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

PhaseManager

public static final MainController.Views PhaseManager
The Phase Manager View.


AdminManager

public static final MainController.Views AdminManager
The Administration View.


ReportingManager

public static final MainController.Views ReportingManager
The Reporting Manager View.


CheckInManager

public static final MainController.Views CheckInManager
The Check-In Manager View.


ArchivingManager

public static final MainController.Views ArchivingManager
The Archiving Manager View.

Method Detail

values

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

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

valueOf

public static MainController.Views 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