public enum SecurityManager extends 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(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(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 © 2013 IronJacamar (http://www.ironjacamar.org)