Uses of Interface
org.apache.commons.configuration2.tree.ExpressionEngine
Package
Description
The Configuration main package.
This package contains the implementations of configuration builder classes used to create new
Configuration
objects.
A package with helper and utility classes used by hierarchical configurations.
This package contains the
XPathExpressionEngine
class which enables XPATH support for querying configuration
properties.-
Uses of ExpressionEngine in org.apache.commons.configuration2
Modifier and TypeMethodDescriptionCombinedConfiguration.getConversionExpressionEngine()
Gets theExpressionEngine
for converting flat child configurations to hierarchical ones.AbstractHierarchicalConfiguration.getExpressionEngine()
Gets the expression engine used by this configuration.ImmutableHierarchicalConfiguration.getExpressionEngine()
Gets the expression engine used by this configuration.PatternSubtreeConfigurationWrapper.getExpressionEngine()
Modifier and TypeMethodDescriptionstatic HierarchicalConfiguration<?>
ConfigurationUtils.convertToHierarchical
(Configuration conf, ExpressionEngine engine) Converts the passed inConfiguration
object to a hierarchical one using the specifiedExpressionEngine
.void
CombinedConfiguration.setConversionExpressionEngine
(ExpressionEngine conversionExpressionEngine) Sets theExpressionEngine
for converting flat child configurations to hierarchical ones.void
AbstractHierarchicalConfiguration.setExpressionEngine
(ExpressionEngine expressionEngine) Sets the expression engine to be used by this configuration.void
HierarchicalConfiguration.setExpressionEngine
(ExpressionEngine expressionEngine) Sets the expression engine to be used by this configuration.void
PatternSubtreeConfigurationWrapper.setExpressionEngine
(ExpressionEngine expressionEngine) -
Uses of ExpressionEngine in org.apache.commons.configuration2.builder
Modifier and TypeMethodDescriptionHierarchicalBuilderParametersImpl.setExpressionEngine
(ExpressionEngine engine) Sets theExpressionEngine
to be used when querying the configuration.HierarchicalBuilderProperties.setExpressionEngine
(ExpressionEngine engine) Sets theExpressionEngine
to be used when querying the configuration. -
Uses of ExpressionEngine in org.apache.commons.configuration2.tree
Modifier and TypeClassDescriptionclass
A default implementation of theExpressionEngine
interface providing the "native" expression language for hierarchical configurations. -
Uses of ExpressionEngine in org.apache.commons.configuration2.tree.xpath
Modifier and TypeClassDescriptionclass
A specialized implementation of theExpressionEngine
interface that is able to evaluate XPATH expressions.