blob: 4e687a99ab1878797dd68b1244c3f359e188eb3c [file] [log] [blame]
/*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.cocoon.woody.event;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.apache.commons.lang.enum.ValuedEnum;
/**
* Type-safe enumeration of the various form processing phases.
*
* @author <a href="http://www.apache.org/~sylvain/">Sylvain Wallez</a>
* @version CVS $Id: ProcessingPhase.java,v 1.3 2004/03/05 13:02:30 bdelacretaz Exp $
*/
public class ProcessingPhase extends ValuedEnum {
protected ProcessingPhase(String name, int value) {
super(name, value);
}
public static final int LOAD_MODEL_VALUE = 0;
public static final ProcessingPhase LOAD_MODEL = new ProcessingPhase("Load model", LOAD_MODEL_VALUE);
public static final int READ_FROM_REQUEST_VALUE = 1;
public static final ProcessingPhase READ_FROM_REQUEST = new ProcessingPhase("Read from request", READ_FROM_REQUEST_VALUE);
public static final int VALIDATE_VALUE = 2;
public static final ProcessingPhase VALIDATE = new ProcessingPhase("Validate", VALIDATE_VALUE);
public static final int SAVE_MODEL_VALUE = 3;
public static final ProcessingPhase SAVE_MODEL = new ProcessingPhase("Save model", SAVE_MODEL_VALUE);
public static ProcessingPhase getEnum(String name) {
return (ProcessingPhase) getEnum(ProcessingPhase.class, name);
}
public static ProcessingPhase getEnum(int value) {
return (ProcessingPhase) getEnum(ProcessingPhase.class, value);
}
public static Map getEnumMap() {
return getEnumMap(ProcessingPhase.class);
}
public static List getEnumList() {
return getEnumList(ProcessingPhase.class);
}
public static Iterator iterator() {
return iterator(ProcessingPhase.class);
}
}