summaryrefslogtreecommitdiff
path: root/src/algorithmus/Constants.java
diff options
context:
space:
mode:
authorLeonard Kugis <leonard@kug.is>2022-04-25 18:43:46 +0200
committerLeonard Kugis <leonard@kug.is>2022-04-25 18:43:46 +0200
commitc9dd9469183d95c6c2f4d01e3d6365ec57386a65 (patch)
tree07ec933179eced02eec8a70f8b64c9281d453457 /src/algorithmus/Constants.java
Initial commitHEADmaster
Diffstat (limited to 'src/algorithmus/Constants.java')
-rwxr-xr-xsrc/algorithmus/Constants.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/algorithmus/Constants.java b/src/algorithmus/Constants.java
new file mode 100755
index 0000000..87772d0
--- /dev/null
+++ b/src/algorithmus/Constants.java
@@ -0,0 +1,13 @@
+package algorithmus;
+
+public class Constants {
+
+ public static final char[] HEX_CHARS = new char[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
+
+ public static final char[] LETTERS_NUMBERS = new char[] {
+ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
+ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
+ 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'
+ };
+
+}