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