public static enum ICaches.Scope extends Enum<ICaches.Scope>
Enum Constant and Description |
---|
APPLICATION
应用级
|
DEFAULT
默认
|
SESSION
会话级
|
Modifier and Type | Method and Description |
---|---|
static ICaches.Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ICaches.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ICaches.Scope APPLICATION
public static final ICaches.Scope SESSION
public static final ICaches.Scope DEFAULT
public static ICaches.Scope[] values()
for (ICaches.Scope c : ICaches.Scope.values()) System.out.println(c);
public static ICaches.Scope valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2022. All rights reserved.