mirror of
https://github.com/OMGeeky/ATCS.git
synced 2025-12-27 14:58:55 +01:00
is activated in the workspace settings. This required the addition of a new lib (in source form) for a SipHash implementation.
9 lines
180 B
Java
9 lines
180 B
Java
package com.zackehh.siphash;
|
|
|
|
/**
|
|
* A basic enum to determine the case of a String.
|
|
*
|
|
* A String can either be UPPER or LOWER case.
|
|
*/
|
|
public enum SipHashCase { UPPER, LOWER }
|