Uses of Interface
org.apache.activemq.filter.function.FilterFunction
-
Packages that use FilterFunction Package Description org.apache.activemq.filter Filter implementations for wildcards & JMS selectorsorg.apache.activemq.filter.function Filter Function implementations for JMS Selectors. -
-
Uses of FilterFunction in org.apache.activemq.filter
Fields in org.apache.activemq.filter declared as FilterFunction Modifier and Type Field Description protected FilterFunction
FunctionCallExpression. filterFunc
protected FilterFunction
FunctionCallExpression.functionRegistration. filterFunction
Methods in org.apache.activemq.filter that return FilterFunction Modifier and Type Method Description FilterFunction
FunctionCallExpression.functionRegistration. getFilterFunction()
Retrieve the filter function implementation.Methods in org.apache.activemq.filter with parameters of type FilterFunction Modifier and Type Method Description static boolean
FunctionCallExpression. registerFunction(String name, FilterFunction impl)
Register the function with the specified name.void
FunctionCallExpression.functionRegistration. setFilterFunction(FilterFunction func)
Set the filter function implementation for this registration.Constructors in org.apache.activemq.filter with parameters of type FilterFunction Constructor Description functionRegistration(FilterFunction func)
Constructs a function registration for the given function implementation. -
Uses of FilterFunction in org.apache.activemq.filter.function
Classes in org.apache.activemq.filter.function that implement FilterFunction Modifier and Type Class Description class
inListFunction
Filter function that matches a value against a list of values and evaluates to an indicator of membership in the list.class
makeListFunction
Filter function that creates a list with each argument being one element in the list.class
regexMatchFunction
Filter function that matches a value against a regular expression.class
replaceFunction
Function which replaces regular expression matches in a source string to a replacement literal.class
splitFunction
Function which splits a string into a list of strings given a regular expression for the separator.
-