Package org.jitterbit.logic.expressiontree.operator

Examples of org.jitterbit.logic.expressiontree.operator.XorOperator


     * Convenience function which enables NOT, AND, OR, XOR operators.
     */
    public void enableLogicOperators() {
        enableOperator(new NotOperator(operations));
        enableOperator(new AndOperator(operations));
        enableOperator(new XorOperator(operations));
        enableOperator(new OrOperator(operations));
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.logic.expressiontree.operator.XorOperator

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.