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

net.lenni0451.commons.math.SliceCalculator Maven / Gradle / Ivy

The newest version!
package net.lenni0451.commons.math;

import java.util.List;

/**
 * Take a list and calculate slices of it.
 *
 * @param  The type of the list
 */
public class SliceCalculator {

    private final List list;
    private final int sliceSize;

    public SliceCalculator(final List list, final int sliceSize) {
        this.list = list;
        this.sliceSize = sliceSize;
    }

    /**
     * @return The list
     */
    public List getList() {
        return this.list;
    }

    /**
     * @return The amount of slices
     */
    public int getSliceCount() {
        return MathUtils.ceilInt((double) this.list.size() / this.sliceSize);
    }

    /**
     * Get a slice of the list.
     *
     * @param sliceIndex The index of the slice
     * @return The slice
     * @throws IndexOutOfBoundsException If the slice index is out of bounds
     */
    public List getSlice(final int sliceIndex) {
        if (sliceIndex < 0 || sliceIndex >= this.getSliceCount()) throw new IndexOutOfBoundsException();

        int firstIndex = this.sliceSize * sliceIndex;
        return this.list.subList(firstIndex, Math.min(this.list.size(), firstIndex + this.sliceSize));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy