public enum CustomProperties extends Enum<CustomProperties>
Enum Constant and Description |
---|
configholder_cache_enabled
Allows to override global configuration on cache activation.
|
configholder_compilation_level
Compilation level, in LIGHT and STANDARD.
|
configholder_factoryimpl
Full rule engine factory class name.
|
configholder_impl
IRuleEngineConfigHolder implementation class full name.
|
configholder_optimization_enabled
Allows to disable optimization process.
|
ruleengine_session_type
Rule engine session type.
|
ruleengine_uri
Rule engine unique URI.
|
ruleenginebuilder_checkhash
Tells wether to compute and check hash to detect configuration modification.
|
ruleenginebuilder_clone
Tells wether to clone registered engine.
|
xmlconfigholder_xmlcontent
For XML Factory : directly the XML content.
|
xmlconfigholder_xmlfile
For XML Factory : a way to access xml file :
File in classpath
Full file system path (file:///[FILE_PATH])
This property can't be provided if xmlconfigholder_xmlcontent is provided.
|
Modifier and Type | Method and Description |
---|---|
String |
getLabel() |
static CustomProperties |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomProperties ruleengine_uri
public static final CustomProperties ruleengine_session_type
public static final CustomProperties ruleenginebuilder_checkhash
public static final CustomProperties ruleenginebuilder_clone
public static final CustomProperties configholder_impl
public static final CustomProperties configholder_compilation_level
public static final CustomProperties configholder_optimization_enabled
public static final CustomProperties configholder_cache_enabled
public static final CustomProperties configholder_factoryimpl
public static final CustomProperties xmlconfigholder_xmlfile
public static final CustomProperties xmlconfigholder_xmlcontent
public static CustomProperties[] values()
for (CustomProperties c : CustomProperties.values()) System.out.println(c);
public static CustomProperties valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getLabel()