edu.utexas.its.eis.tools.qwicap.servlet
Enum BlockingOperation

java.lang.Object
  extended by java.lang.Enum<BlockingOperation>
      extended by edu.utexas.its.eis.tools.qwicap.servlet.BlockingOperation
All Implemented Interfaces:
Serializable, Comparable<BlockingOperation>

public enum BlockingOperation
extends Enum<BlockingOperation>

A enumerated type that provides unique identifiers for the various operations that cause Qwicap to block.

Author:
Chris W. Johnson

Enum Constant Summary
PROMPT
          The unique identifier for Qwicap "prompt" operations that block.
REDIRECT
          The unique identifier for Qwicap "redirect" operations that block.
 
Method Summary
static BlockingOperation valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BlockingOperation[] 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

PROMPT

public static final BlockingOperation PROMPT
The unique identifier for Qwicap "prompt" operations that block.

See Also:
Qwicap.prompt(MutableMarkup), Qwicap.prompt()

REDIRECT

public static final BlockingOperation REDIRECT
The unique identifier for Qwicap "redirect" operations that block.

See Also:
Qwicap.redirect(String)
Method Detail

values

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

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

valueOf

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