public enum ShiroAction extends Enum<ShiroAction>
Enum Constant and Description |
---|
ENABLE |
INSTANTIATE |
RENDER |
Modifier and Type | Method and Description |
---|---|
static ShiroAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShiroAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShiroAction INSTANTIATE
public static final ShiroAction RENDER
public static final ShiroAction ENABLE
public static ShiroAction[] values()
for (ShiroAction c : ShiroAction.values()) System.out.println(c);
public static ShiroAction 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 © 2015. All rights reserved.