Package org.kie.maven.plugin.enums
Enum ExecModelMode
- java.lang.Object
-
- java.lang.Enum<ExecModelMode>
-
- org.kie.maven.plugin.enums.ExecModelMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ExecModelMode>
public enum ExecModelMode extends java.lang.Enum<ExecModelMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NOWITHANCWITHDRL_MVELWITHMVELYESYES_WITHDRL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExecModelModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ExecModelMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YES
public static final ExecModelMode YES
-
NO
public static final ExecModelMode NO
-
YES_WITHDRL
public static final ExecModelMode YES_WITHDRL
-
WITHMVEL
public static final ExecModelMode WITHMVEL
-
WITHDRL_MVEL
public static final ExecModelMode WITHDRL_MVEL
-
WITHANC
public static final ExecModelMode WITHANC
-
-
Method Detail
-
values
public static ExecModelMode[] 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 (ExecModelMode c : ExecModelMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExecModelMode valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-