Package org.mule.modules.interceptor.matchers

Examples of org.mule.modules.interceptor.matchers.AnyClassMatcher


        return new EqMatcher(o);
    }

    protected final Matcher anyBoolean()
    {
        return new AnyClassMatcher(Boolean.class);
    }
View Full Code Here


        return new AnyClassMatcher(Boolean.class);
    }

    protected final Matcher anyByte()
    {
        return new AnyClassMatcher(Byte.class);
    }
View Full Code Here

        return new AnyClassMatcher(Byte.class);
    }

    protected final Matcher anyInt()
    {
        return new AnyClassMatcher(Integer.class);
    }
View Full Code Here

TOP

Related Classes of org.mule.modules.interceptor.matchers.AnyClassMatcher

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.