Package org.jitterbit.util.arithmetic

Examples of org.jitterbit.util.arithmetic.ComparisonOperator


        return check(srcHistory.getFileSizeInBytes());
    }

    private boolean check(long entryValue) {
        boolean valid = true;
        ComparisonOperator op = getOperator();
        if (op != null) {
            long filterValue = getValueInBytes();
            if (entryValue >= 0L) {
                valid = op.isTrue(entryValue, filterValue);
            }
        }
        return valid;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.util.arithmetic.ComparisonOperator

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.