public enum BindingPolicy extends java.lang.Enum<BindingPolicy>
Enum Constant and Description |
---|
DYNAMIC |
DYNAMIC_PRIORITY |
STATIC |
Modifier and Type | Method and Description |
---|---|
static BindingPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BindingPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindingPolicy DYNAMIC
public static final BindingPolicy STATIC
public static final BindingPolicy DYNAMIC_PRIORITY
public static BindingPolicy[] values()
for (BindingPolicy c : BindingPolicy.values()) System.out.println(c);
public static BindingPolicy 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 © 2006-2014 The Apache Software Foundation. All Rights Reserved.