protected static enum JndiHelper.Operation extends java.lang.Enum<JndiHelper.Operation>
| Enum Constant and Description |
|---|
BIND |
CREATE_SUBCONTEXT |
REBIND |
| Modifier and Type | Method and Description |
|---|---|
static JndiHelper.Operation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JndiHelper.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JndiHelper.Operation BIND
public static final JndiHelper.Operation REBIND
public static final JndiHelper.Operation CREATE_SUBCONTEXT
public static JndiHelper.Operation[] values()
for (JndiHelper.Operation c : JndiHelper.Operation.values()) System.out.println(c);
public static JndiHelper.Operation 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 null