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

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

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

import com.wselwood.mpcreader.InvalidDataException;

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

    public HexColumn(int start, int end, Container row) {
        this.start = start;
        this.count = end - start;
        this.row = row;
    }

    @Override
    public void process(char[] buffer) throws InvalidDataException {
        String value = new String(buffer, start, count).trim();

        row.set(Integer.parseInt(value, 16));
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy