Package org.apache.cxf
Enum Bus.BusState
- java.lang.Object
- 
- java.lang.Enum<Bus.BusState>
- 
- org.apache.cxf.Bus.BusState
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<Bus.BusState>
 - Enclosing interface:
- Bus
 
 public static enum Bus.BusState extends Enum<Bus.BusState> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description INITIALINITIALIZINGRUNNINGSHUTDOWNSHUTTING_DOWN
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Bus.BusStatevalueOf(String name)Returns the enum constant of this type with the specified name.static Bus.BusState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
INITIALpublic static final Bus.BusState INITIAL 
 - 
INITIALIZINGpublic static final Bus.BusState INITIALIZING 
 - 
RUNNINGpublic static final Bus.BusState RUNNING 
 - 
SHUTTING_DOWNpublic static final Bus.BusState SHUTTING_DOWN 
 - 
SHUTDOWNpublic static final Bus.BusState SHUTDOWN 
 
- 
 - 
Method Detail- 
valuespublic static Bus.BusState[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Bus.BusState c : Bus.BusState.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Bus.BusState valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-