Package org.qi4j.api.query.grammar

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


    @SuppressWarnings( {"raw", "unchecked"} )
    public static <T> ContainsSpecification<T> contains( Property<? extends Collection<T>> collectionProperty,
                                                         Variable variable )
    {
        NullArgumentException.validateNotNull( "Variable", variable );
        return new ContainsSpecification( property( collectionProperty ), variable );
    }
View Full Code Here

TOP

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

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.