
public enum SecurityManager extends java.lang.Enum<SecurityManager>
| Enum Constant and Description |
|---|
APPLICATION
APPLICATION
|
APPLICATION_AND_DOMAIN
APPLICATION_AND_DOMAIN
|
DOMAIN
DOMAIN
|
NONE
NONE
|
| Modifier and Type | Method and Description |
|---|---|
static SecurityManager |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SecurityManager[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityManager APPLICATION
public static final SecurityManager DOMAIN
public static final SecurityManager APPLICATION_AND_DOMAIN
public static final SecurityManager NONE
public static SecurityManager[] values()
for (SecurityManager c : SecurityManager.values()) System.out.println(c);
public static SecurityManager 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 nullCopyright © 2014 IronJacamar (http://www.ironjacamar.org)