1: package dalma; 2: 3: /** 4: * @author Kohsuke Kawaguchi 5: */ 6: public enum FiberState { 7: CREATED, WAITING, RUNNING, RUNNABLE, ENDED 8: }