Skip to content

Instantly share code, notes, and snippets.

@Vladimir-Urik
Created July 23, 2021 17:03
Show Gist options
  • Save Vladimir-Urik/c52d7dbcb153670b9cf41fecf1edbcf4 to your computer and use it in GitHub Desktop.
Save Vladimir-Urik/c52d7dbcb153670b9cf41fecf1edbcf4 to your computer and use it in GitHub Desktop.
package xyz.gggedr.xseries.apix.logs;
import lombok.Getter;
import java.util.List;
public enum Ascii {
A(" ",
" /\\ ",
"/--\\",
" "),
B(" __ ",
"|__)",
"|__)",
" "),
C(" __",
"/ ",
"\\__",
" "),
D(" __ ",
"| \\",
"|__/",
" "),
E(" __",
"|_ ",
"|__",
" "),
F(" __",
"|_ ",
"| ",
" "),
G(" __ ",
"/ _ ",
"\\__)",
" "),
H(" ",
"|__|",
"| |",
" "),
I(" ",
"|",
"|",
" "),
J(" ",
" |",
"(_)",
" "),
K(" ",
"|_/",
"| \\",
" "),
L(" ",
"| ",
"|__",
" "),
M(" ",
"|\\/|",
"| |",
" "),
N(" ",
"|\\ |",
"| \\|",
" "),
O(" __ ",
"/ \\",
"\\__/",
" "),
P(" __ ",
"|__)",
"| ",
" "),
R(" __ ",
"|__)",
"| \\ ",
" "),
S(" __",
"(_ ",
"__)",
" "),
T("___",
" | ",
" | ",
" "),
U(" ",
"/ \\",
"\\__/",
" "),
V(" ",
"\\ /",
" \\/ ",
" "),
W(" ",
"| |",
"|/\\|",
" "),
X(" ",
"\\/",
"/\\",
" "),
Y(" ",
"\\_/",
" | ",
" "),
Z("___",
" _/",
"/__",
" ");
@Getter
private final List<String> lines;
Ascii(String... lines){
this.lines = List.of(lines);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment