public enum JaxbDataType extends java.lang.Enum<JaxbDataType>
DataType
suitable for JAXB marshalling and unmarshalling. This
class must be used only for JAXB operations.DataType
Enum Constant and Description |
---|
BIT_VECTOR |
LOGIC_BOOLEAN |
LOGIC_INTEGER |
LOGIC_REAL |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static JaxbDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JaxbDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JaxbDataType BIT_VECTOR
public static final JaxbDataType LOGIC_BOOLEAN
public static final JaxbDataType LOGIC_INTEGER
public static final JaxbDataType LOGIC_REAL
public static final JaxbDataType UNKNOWN
public static JaxbDataType[] values()
for (JaxbDataType c : JaxbDataType.values()) System.out.println(c);
public static JaxbDataType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null