public enum Scope extends java.lang.Enum<Scope>
ScopeParam
. ScopeParam
Enum Constant and Description |
---|
APPLICATION
Search the value from the implicit applicationScope
|
AUTO
Search the value from components to page, desktop one bye one...until find a value
|
COMPONENT
Search the value from the implicit componentScope
|
DESKTOP
Search the value from the implicit desktopScope
|
PAGE
Search the value from the implicit pageScope
|
SESSION
Search the value from the implicit sessionScope
|
SPACE
Search the value from the implicit spaceScope
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName()
the zk implicit scope name
|
static Scope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scope AUTO
public static final Scope COMPONENT
public static final Scope SPACE
public static final Scope PAGE
public static final Scope DESKTOP
public static final Scope SESSION
public static final Scope APPLICATION
public static Scope[] values()
for (Scope c : Scope.values()) System.out.println(c);
public static Scope 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 nullpublic java.lang.String getName()
Copyright © 2005-2011 Potix Corporation. All Rights Reserved.