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

org.csveed.row.CellPositionInRow Maven / Gradle / Ivy

Go to download

Java toolkit for mapping CSV-to-Bean mapping and vice versa. Redirection to Introduction in 5 seconds!

There is a newer version: 0.8.2
Show newest version
package org.csveed.row;

public class CellPositionInRow {

    private int start;

    private int end;

    public int getStart() {
        return start;
    }

    public void setStart(int start) {
        this.start = start;
    }

    public int getEnd() {
        return end;
    }

    public void setEnd(int end) {
        this.end = end;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy