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

me.legrange.console.Counter Maven / Gradle / Ivy

The newest version!
package me.legrange.console;

import static java.lang.String.format;

final class Counter extends Animator  {

    Counter() {
    }

    @Override
    String draw(N min, N max, N value) {
        return format("%d of %d", value.intValue(), max.intValue());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy