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

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

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

/**
 * Take the last bytes of the object with a length equal to 'lastBytes'
 */
public class LastPartRange extends AbstractRange {

    public LastPartRange(int lastBytes) {
        super(-1, lastBytes);
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy