/* */
/* 65 */ public static final Set STATES = new HashSet(Arrays.asList(new State[] { STATE_UNREGISTERED, STATE_REGISTERED, STATE_CREATED, STATE_STARTING, STATE_STARTED, STATE_STOPPING, STATE_STOPPED, STATE_DESTROYED, STATE_FAILED }));
/* */
/* */ public static StateMachine createStateMachine(String description)
/* */ {
/* 130 */ return new StateMachine(STATES, STATE_UNREGISTERED, description);
/* */ }