Package dbfit.util

Examples of dbfit.util.DataRow


            }
        }

        @Override
        public void process(final DataRow row1) {
            DataRow row2 = mdt2.findMatchingNothrow(mmb.buildMatchingMask(row1));
            getChildDiff().diff(row1, row2);
            mdt2.markProcessed(row2);
        }
View Full Code Here


    }

    @SuppressWarnings("unchecked")
    public static MatchResult createRowResult(final String s1, final String s2,
            final MatchStatus status, final Exception ex) {
        DataRow o1 = fakeDataRow(s1);
        DataRow o2 = fakeDataRow(s2);

        MatchResult res = new MatchResult(o1, o2, status, DataRow.class, ex);

        return res;
    }
View Full Code Here

            @Override public String toString() { return stringValue; }
        };
    }

    public static DataRow fakeDataRow(final String stringValue) {
        return new DataRow(null) {
            @Override public String toString() { return stringValue; }
        };
    }
View Full Code Here

            for (Object item : items) {
                rowValues.put(getColumnName(i++), String.valueOf(item));
            }

            return new DataRow(rowValues);
        }
View Full Code Here

TOP

Related Classes of dbfit.util.DataRow

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.