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

nl.tweeenveertig.openstack.headers.object.range.FirstPartRange Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
package nl.tweeenveertig.openstack.headers.object.range;

/**
 * Take the first bytes of the object until -- ie not including -- position 'until'
 */
public class FirstPartRange extends AbstractRange {
    public FirstPartRange(int until) {
        super(0, until);
    }

    @Override
    public int getFrom(int byteArrayLength) {
        return 0;
    }

    @Override
    public int getTo(int byteArrayLength) {
        return length;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy