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

com.wselwood.mpcreader.columns.TextColumn Maven / Gradle / Ivy

There is a newer version: 0.1.1
Show newest version
package com.wselwood.mpcreader.columns;

import com.wselwood.mpcreader.InvalidDataException;

import java.util.Map;

/**
 * Created by wselwood on 14/04/14.
 */
public class TextColumn implements Column {

    public TextColumn(int start, int end, Container row) {
        this.start = start;
        this.count = end - start;
        this.row = row;
    }
    @Override
    public void process(char[] buffer ) throws InvalidDataException {
        row.set(new String(buffer, start, count).trim());
    }


    private final int start;
    private final int count;
    private final Container row;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy