Package org.kie.dmn.feel.codegen.feel11
Enum ProcessedFEELUnit.DefaultMode
- java.lang.Object
-
- java.lang.Enum<ProcessedFEELUnit.DefaultMode>
-
- org.kie.dmn.feel.codegen.feel11.ProcessedFEELUnit.DefaultMode
-
- All Implemented Interfaces:
Serializable,Comparable<ProcessedFEELUnit.DefaultMode>
- Enclosing class:
- ProcessedFEELUnit
public static enum ProcessedFEELUnit.DefaultMode extends Enum<ProcessedFEELUnit.DefaultMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CompiledInterpreted
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProcessedFEELUnit.DefaultModeof(boolean doCompile)static ProcessedFEELUnit.DefaultModevalueOf(String name)Returns the enum constant of this type with the specified name.static ProcessedFEELUnit.DefaultMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Compiled
public static final ProcessedFEELUnit.DefaultMode Compiled
-
Interpreted
public static final ProcessedFEELUnit.DefaultMode Interpreted
-
-
Method Detail
-
values
public static ProcessedFEELUnit.DefaultMode[] 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 (ProcessedFEELUnit.DefaultMode c : ProcessedFEELUnit.DefaultMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessedFEELUnit.DefaultMode 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
-
of
public static ProcessedFEELUnit.DefaultMode of(boolean doCompile)
-
-