public interface ExpressionModule
| Modifier and Type | Interface and Description |
|---|---|
static interface |
ExpressionModule.Builder |
| Modifier and Type | Method and Description |
|---|---|
Collection<Binding> |
bindings()
Returns all bindings found.
|
static ExpressionModule.Builder |
builder(ModuleNamespace namespace)
Provides a builder to create
ExpressionModule objects. |
Collection<String> |
identifiers()
Returns all identifiers found.
|
Optional<TypedValue> |
lookup(String identifier)
Allows searching for a specific binding by its identifier.
|
ModuleNamespace |
namespace()
Returns the namespace of this module
|
static ExpressionModule.Builder builder(ModuleNamespace namespace)
ExpressionModule objects.namespace - The namespace of the module to be built.ExpressionModule.Builder.Collection<Binding> bindings()
Collection of all Bindings in the moduleCollection<String> identifiers()
Collection of all binding identifiers in the moduleOptional<TypedValue> lookup(String identifier)
identifier - the variable or function name to lookupOptional of the associated TypedValue found or an empty one.ModuleNamespace namespace()
Copyright © 2017 MuleSoft, Inc.. All rights reserved.