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

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

The newest version!
package me.legrange.console;

public enum SpinnerStyle {

    FULL_CIRCLE("◴", "◷", "◶", "◵"),
    QUARTER_CIRCLE("◐", "◓", "◑", "◒"),
    ARROW("←", "↑", "→", "↓"),
    BOX_DRAWING("▖", "▘", "▝", "▗"),
    BRAILLE("⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"),
    STAR("✶", "✸", "✹", "✺", "✻", "✼"), 
    EARTH("🌍", "🌎", "🌏"), 
    CLOCK("🕛", "🕐", "🕑", "🕒", "🕓", "🕔", "🕕", "🕖", "🕗", "🕘", "🕙", "🕚"),
    MOON_PHASES("🌑", "🌒", "🌓", "🌔", "🌕", "🌖", "🌗", "🌘");

    private final String[] chars;

    SpinnerStyle(String...chars) {
        this.chars = chars;
    }

    String[] chars() {
        return chars;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy