Package org.kie.memorycompiler
Enum JavaConfiguration.CompilerType
- java.lang.Object
-
- java.lang.Enum<JavaConfiguration.CompilerType>
-
- org.kie.memorycompiler.JavaConfiguration.CompilerType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<JavaConfiguration.CompilerType>
- Enclosing class:
- JavaConfiguration
public static enum JavaConfiguration.CompilerType extends java.lang.Enum<JavaConfiguration.CompilerType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<?>getImplClass()java.lang.StringgetImplClassName()static JavaConfiguration.CompilerTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JavaConfiguration.CompilerType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ECLIPSE
public static final JavaConfiguration.CompilerType ECLIPSE
-
NATIVE
public static final JavaConfiguration.CompilerType NATIVE
-
-
Method Detail
-
values
public static JavaConfiguration.CompilerType[] 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 (JavaConfiguration.CompilerType c : JavaConfiguration.CompilerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JavaConfiguration.CompilerType 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
-
getImplClass
public java.lang.Class<?> getImplClass()
-
getImplClassName
public java.lang.String getImplClassName()
-
-