Package org.qi4j.api.query.grammar

Examples of org.qi4j.api.query.grammar.MatchesSpecification


     *
     * @return a new REGULAR EXPRESSION specification for a Property.
     */
    public static MatchesSpecification matches( Property<String> property, String regexp )
    {
        return new MatchesSpecification( property( property ), regexp );
    }
View Full Code Here


     *
     * @return a new REGULAR EXPRESSION specification for a Property using a named Variable.
     */
    public static MatchesSpecification matches( Property<String> property, Variable variable )
    {
        return new MatchesSpecification( property( property ), variable );
    }
View Full Code Here

                ContainsSpecification<?> contSpec = (ContainsSpecification) spec;
                processContainsSpecification( filterBuilder, contSpec, variables );
            }
            else if( spec instanceof MatchesSpecification )
            {
                MatchesSpecification matchSpec = (MatchesSpecification) spec;
                processMatchesSpecification( filterBuilder, matchSpec, variables );
            }
            else if( spec instanceof PropertyNotNullSpecification )
            {
                PropertyNotNullSpecification<?> propNotNullSpec = (PropertyNotNullSpecification) spec;
View Full Code Here

TOP

Related Classes of org.qi4j.api.query.grammar.MatchesSpecification

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.