me.legrange.console.Animation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of console-animation Show documentation
Show all versions of console-animation Show documentation
A small console animation library
The newest version!
package me.legrange.console;
public interface Animation extends AutoCloseable {
Animation progressBar(BarStyle style, int size);
Animation percent();
Animation spinner(SpinnerStyle style);
Animation text(String text);
Animation counter();
void update(N value);
@Override
void close();
static Animation create(N min, N max) {
return new Head<>(min, max);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy