All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.csveed.report.RowError Maven / Gradle / Ivy

/*
 * CSVeed (https://github.com/42BV/CSVeed)
 *
 * Copyright 2013-2023 CSVeed.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of The Apache Software License,
 * Version 2.0 which accompanies this distribution, and is available at
 * https://www.apache.org/licenses/LICENSE-2.0.txt
 */
package org.csveed.report;

import java.util.List;

/**
 * The Class RowError.
 */
public class RowError extends AbstractCsvError {

    /** The report. */
    private RowReport report;

    /** The line number. */
    private int lineNumber;

    /**
     * Instantiates a new row error.
     *
     * @param message
     *            the message
     * @param report
     *            the report
     * @param lineNumber
     *            the line number
     */
    public RowError(String message, RowReport report, int lineNumber) {
        super(message);
        this.report = report;
        this.lineNumber = lineNumber;
    }

    /**
     * Gets the report.
     *
     * @return the report
     */
    public RowReport getReport() {
        return report;
    }

    @Override
    public List getPrintableLines() {
        List lines = getMessageAsList();
        List lineReport = report.getPrintableLines();
        lines.add(lineNumber + ": " + lineReport.get(0));
        lines.add(lineNumber + ": " + lineReport.get(1));
        return lines;
    }

    @Override
    public List getRowParts() {
        return report.tokenize();
    }

    @Override
    public int getLineNumber() {
        return lineNumber;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy