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

org.solovyev.android.view.IntegerRange Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package org.solovyev.android.view;

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.solovyev.common.text.Formatter;

/**
 * User: serso
 * Date: 8/10/12
 * Time: 12:08 AM
 */
public class IntegerRange extends NumberRange {

    public IntegerRange(@NotNull Integer min,
                        @NotNull Integer max,
                        @NotNull Integer step,
                        int startPosition,
                        @Nullable Formatter formatter) {
        super(min, max, step, startPosition, formatter);
    }

    @NotNull
    public static NumberRange newInstance(@NotNull Integer min, @NotNull Integer max, @NotNull Integer step, @NotNull Integer selected) {
        if (selected < min || selected > max) {
            throw new IllegalArgumentException("Selected value: " + selected + " should be >= " + min + " and <= " + max + "!");
        }

        int startPosition = 0;
        for ( int i = min; i < selected; i += step ) {
            startPosition += 1;
        }

        return new IntegerRange(min, max, step, startPosition, null);
    }

    @Override
    protected int getCount(@NotNull Integer min, @NotNull Integer max, @NotNull Integer step) {
        // (4 - 0)/1 + 1= 5
        // (4 - 0)/2 + 1 = 3
        // (4 - 1)/2 + 1 = 2
        return (max - min) / step + 1;
    }

    @NotNull
    @Override
    protected Integer getValueAt(int position, @NotNull Integer min, @NotNull Integer max, @NotNull Integer step) {
        return min + position * step;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy