📄 simulationinformationinstantiationtype.java
字号:
/*
* This class was automatically generated with
* <a href="http://www.castor.org">Castor cvs.0.9.6</a>, using an
* XML Schema.
* $Id$
*/
package workflow.xwfbox.process.types;
//---------------------------------/
//- Imported classes and packages -/
//---------------------------------/
import java.io.Serializable;
import java.util.Enumeration;
import java.util.Hashtable;
/**
* Class SimulationInformationInstantiationType.
*
* @version $Revision$ $Date$
*/
public class SimulationInformationInstantiationType implements java.io.Serializable {
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* The ONCE type
*/
public static final int ONCE_TYPE = 0;
/**
* The instance of the ONCE type
*/
public static final SimulationInformationInstantiationType ONCE = new SimulationInformationInstantiationType(ONCE_TYPE, "ONCE");
/**
* The MULTIPLE type
*/
public static final int MULTIPLE_TYPE = 1;
/**
* The instance of the MULTIPLE type
*/
public static final SimulationInformationInstantiationType MULTIPLE = new SimulationInformationInstantiationType(MULTIPLE_TYPE, "MULTIPLE");
/**
* Field _memberTable
*/
private static java.util.Hashtable _memberTable = init();
/**
* Field type
*/
private int type = -1;
/**
* Field stringValue
*/
private java.lang.String stringValue = null;
//----------------/
//- Constructors -/
//----------------/
private SimulationInformationInstantiationType(int type, java.lang.String value) {
super();
this.type = type;
this.stringValue = value;
} //-- workflow.xwfbox.process.types.SimulationInformationInstantiationType(int, java.lang.String)
//-----------/
//- Methods -/
//-----------/
/**
* Method enumerate
*
* Returns an enumeration of all possible instances of
* SimulationInformationInstantiationType
*
* @return Enumeration
*/
public static java.util.Enumeration enumerate()
{
return _memberTable.elements();
} //-- java.util.Enumeration enumerate()
/**
* Method getType
*
* Returns the type of this
* SimulationInformationInstantiationType
*
* @return int
*/
public int getType()
{
return this.type;
} //-- int getType()
/**
* Method init
*
*
*
* @return Hashtable
*/
private static java.util.Hashtable init()
{
Hashtable members = new Hashtable();
members.put("ONCE", ONCE);
members.put("MULTIPLE", MULTIPLE);
return members;
} //-- java.util.Hashtable init()
/**
* Method readResolve
*
* will be called during deserialization to replace the
* deserialized object with the correct constant instance.
* <br/>
*
* @return Object
*/
private java.lang.Object readResolve()
{
return valueOf(this.stringValue);
} //-- java.lang.Object readResolve()
/**
* Method toString
*
* Returns the String representation of this
* SimulationInformationInstantiationType
*
* @return String
*/
public java.lang.String toString()
{
return this.stringValue;
} //-- java.lang.String toString()
/**
* Method valueOf
*
* Returns a new SimulationInformationInstantiationType based
* on the given String value.
*
* @param string
* @return SimulationInformationInstantiationType
*/
public static workflow.xwfbox.process.types.SimulationInformationInstantiationType valueOf(java.lang.String string)
{
java.lang.Object obj = null;
if (string != null) obj = _memberTable.get(string);
if (obj == null) {
String err = "'" + string + "' is not a valid SimulationInformationInstantiationType";
throw new IllegalArgumentException(err);
}
return (SimulationInformationInstantiationType) obj;
} //-- workflow.xwfbox.process.types.SimulationInformationInstantiationType valueOf(java.lang.String)
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -