Package org.byteliberi.easydriver.expressions

Examples of org.byteliberi.easydriver.expressions.StringExpression


        /**
         * Appends a normal <b>like</b> operation
         * @return Updated builder 
         */
        public WhereBuilder like() {
            this.where.add(new StringExpression(" like "));           
            return this;
        }
View Full Code Here


         * Appends a <b>not</b> operator
         *
         * @return Update builder
         */
        public WhereBuilder not() {
            this.where.add(new StringExpression(" not "));
            return this;
        }      
View Full Code Here

        /**
         * Appends an <b>or</b> operator
         * @return Updated builder
         */
        public WhereBuilder or() {
            this.where.add(new StringExpression(" or "));
            return this;
        }              
View Full Code Here

TOP

Related Classes of org.byteliberi.easydriver.expressions.StringExpression

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.