Package org.mule.modules.interceptor.matchers.mel

Examples of org.mule.modules.interceptor.matchers.mel.NotNullMatcherFunction


        context.declareFunction("anyList", new AnyMatcherFunction(List.class));
        context.declareFunction("anySet", new AnyMatcherFunction(Set.class));
        context.declareFunction("anyMap", new AnyMatcherFunction(Map.class));
        context.declareFunction("anyCollection", new AnyMatcherFunction(Collection.class));
        context.declareFunction("isNull", new NullMatcherFunction());
        context.declareFunction("isNotNull", new NotNullMatcherFunction());
        context.declareFunction("any", new AnyClassMatcherFunction());
        context.declareFunction("matchRegex", new RegexMatcherFunction());
        context.declareFunction("contains", new ContainsMatcherFunction());
        context.declareFunction("resultOfScript", new FlowResultFunction());
        context.declareFunction("getResource", new GetResourceFunction());
View Full Code Here

TOP

Related Classes of org.mule.modules.interceptor.matchers.mel.NotNullMatcherFunction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.