org.directwebremoting.annotations
Enum ScriptScope
java.lang.Object
java.lang.Enum<ScriptScope>
org.directwebremoting.annotations.ScriptScope
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ScriptScope>
public enum ScriptScope
- extends java.lang.Enum<ScriptScope>
A scripting scope.
See Creator
for details.
- Author:
- Maik Schreiber , Joe Walker [joe at getahead dot ltd dot uk]
Method Summary |
static ScriptScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ScriptScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they're 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 |
APPLICATION
public static final ScriptScope APPLICATION
- See Also:
Creator.APPLICATION
SESSION
public static final ScriptScope SESSION
- See Also:
Creator.SESSION
SCRIPT
public static final ScriptScope SCRIPT
- See Also:
Creator.SCRIPT
REQUEST
public static final ScriptScope REQUEST
- See Also:
Creator.REQUEST
PAGE
public static final ScriptScope PAGE
- See Also:
Creator.PAGE
values
public static final ScriptScope[] 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(ScriptScope c : ScriptScope.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static ScriptScope 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