public enum AttributeScope extends java.lang.Enum<AttributeScope>
Title: AttributeScope.java
Description:
bboss workgroup
Copyright (c) 2008
| Enum Constant and Description |
|---|
MODEL_ATTRIBUTE |
PAGECONTEXT_APPLICATION_SCOPE |
PAGECONTEXT_PAGE_SCOPE |
PAGECONTEXT_REQUEST_SCOPE |
PAGECONTEXT_SESSION_SCOPE |
REQUEST_ATTRIBUTE |
SESSION_ATTRIBUTE |
| Modifier and Type | Method and Description |
|---|---|
static AttributeScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttributeScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeScope SESSION_ATTRIBUTE
public static final AttributeScope REQUEST_ATTRIBUTE
public static final AttributeScope PAGECONTEXT_PAGE_SCOPE
public static final AttributeScope PAGECONTEXT_REQUEST_SCOPE
public static final AttributeScope PAGECONTEXT_SESSION_SCOPE
public static final AttributeScope PAGECONTEXT_APPLICATION_SCOPE
public static final AttributeScope MODEL_ATTRIBUTE
public static AttributeScope[] values()
for (AttributeScope c : AttributeScope.values()) System.out.println(c);
public static AttributeScope valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null