org.jasig.portlet.emailpreview.controller
Enum EmailSummaryController.View

java.lang.Object
  extended by java.lang.Enum<EmailSummaryController.View>
      extended by org.jasig.portlet.emailpreview.controller.EmailSummaryController.View
All Implemented Interfaces:
Serializable, Comparable<EmailSummaryController.View>
Enclosing class:
EmailSummaryController

public static enum EmailSummaryController.View
extends Enum<EmailSummaryController.View>

Three possible views for this controller.


Enum Constant Summary
PREVIEW
          Tabular view of the INBOX with lots of features
ROLLUP
          Indicates the portlet is not yet (completely) configured
WELCOME
          Indicates the portlet is not yet (completely) configured
 
Method Summary
static EmailSummaryController.View getInstance(String key)
           
 String getKey()
           
abstract  org.springframework.web.portlet.ModelAndView show(javax.portlet.RenderRequest req, javax.portlet.RenderResponse res, EmailSummaryController controller)
           
static EmailSummaryController.View valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EmailSummaryController.View[] 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

WELCOME

public static final EmailSummaryController.View WELCOME
Indicates the portlet is not yet (completely) configured


ROLLUP

public static final EmailSummaryController.View ROLLUP
Indicates the portlet is not yet (completely) configured


PREVIEW

public static final EmailSummaryController.View PREVIEW
Tabular view of the INBOX with lots of features

Method Detail

values

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

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

valueOf

public static EmailSummaryController.View 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
NullPointerException - if the argument is null

getInstance

public static EmailSummaryController.View getInstance(String key)

getKey

public String getKey()

show

public abstract org.springframework.web.portlet.ModelAndView show(javax.portlet.RenderRequest req,
                                                                  javax.portlet.RenderResponse res,
                                                                  EmailSummaryController controller)


Copyright © 2012 Jasig. All Rights Reserved.