Package org.apache.metamodel.query

Examples of org.apache.metamodel.query.LogicalOperator


     * @param idList
     * @param whereItem
     */
    protected void buildIdList(List<String> idList, FilterItem whereItem) {
        if (whereItem.isCompoundFilter()) {
            final LogicalOperator logicalOperator = whereItem.getLogicalOperator();
            if (logicalOperator != LogicalOperator.OR) {
                throw new IllegalStateException(
                        "Salesforce only allows deletion of records by their specific IDs. Violated by operator between where items: "
                                + whereItem);
            }
View Full Code Here

TOP

Related Classes of org.apache.metamodel.query.LogicalOperator

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.