Created
July 23, 2021 17:03
-
-
Save Vladimir-Urik/c52d7dbcb153670b9cf41fecf1edbcf4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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