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

org.monte.media.tiff.FileSegment Maven / Gradle / Ivy

The newest version!

package org.monte.media.tiff;


public class FileSegment {

    private long offset;
    private long length;

    public FileSegment(long offset, long length) {
        this.offset = offset;
        this.length = length;
    }

    public long getLength() {
        return length;
    }

    public long getOffset() {
        return offset;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy