Package com.force.sdk.jpa.query.formatter

Examples of com.force.sdk.jpa.query.formatter.MultiPicklistFormatter


            // This is simply picklist values
            appendExpression(h, expr.getLeft(), ec);
            if (expr.getArguments().size() > 0) {
                h.sb.append(not ? " excludes(" : " includes(");
                Literal l = (Literal) expr.getArguments().get(0);
                h.sb.append(new MultiPicklistFormatter(l.getLiteral().toString()).getFormattedString());
                h.sb.append(")");
            } else {
                h.sb.append(not ? " = " : " != ").append("null");
            }
        }
View Full Code Here

TOP

Related Classes of com.force.sdk.jpa.query.formatter.MultiPicklistFormatter

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.