Enum XStreamMarshaller.DMN_VERSION
- java.lang.Object
-
- java.lang.Enum<XStreamMarshaller.DMN_VERSION>
-
- org.kie.dmn.backend.marshalling.v1x.XStreamMarshaller.DMN_VERSION
-
- All Implemented Interfaces:
Serializable,Comparable<XStreamMarshaller.DMN_VERSION>
- Enclosing class:
- XStreamMarshaller
public static enum XStreamMarshaller.DMN_VERSION extends Enum<XStreamMarshaller.DMN_VERSION>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static XStreamMarshaller.DMN_VERSIONvalueOf(String name)Returns the enum constant of this type with the specified name.static XStreamMarshaller.DMN_VERSION[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final XStreamMarshaller.DMN_VERSION UNKNOWN
-
DMN_v1_1
public static final XStreamMarshaller.DMN_VERSION DMN_v1_1
-
DMN_v1_2
public static final XStreamMarshaller.DMN_VERSION DMN_v1_2
-
DMN_v1_3
public static final XStreamMarshaller.DMN_VERSION DMN_v1_3
-
DMN_v1_4
public static final XStreamMarshaller.DMN_VERSION DMN_v1_4
-
-
Method Detail
-
values
public static XStreamMarshaller.DMN_VERSION[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (XStreamMarshaller.DMN_VERSION c : XStreamMarshaller.DMN_VERSION.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XStreamMarshaller.DMN_VERSION valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-