Package rulesystem.ruleinput

Examples of rulesystem.ruleinput.RuleInput


                    || colName.equals(this.uniqueOutputColumnName)) {
                continue;
            }

            String inputValue = inputMap.get(colName);
            RuleInput ruleInput = this.fieldMap.get(colName);

            // Actual comparison is determined by the input types. So over to them.
            if (ruleInput.evaluate(inputValue)) {
                continue;
            } else {
                return false;
            }
        }
View Full Code Here


            if (colName.equals(this.uniqueIdColumnName)
                    || colName.equals(this.uniqueOutputColumnName)) {
                continue;
            }

            RuleInput thisInput = this.fieldMap.get(colName);
            RuleInput ruleInput = rule.getColumnData(colName);

            // Mark as not conflicting if any field is not conflicting
            if (!ruleInput.isConflicting(thisInput)) {
                return false;
            }
        }

        return true;
View Full Code Here

TOP

Related Classes of rulesystem.ruleinput.RuleInput

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.