mirror of
https://github.com/AndorsTrailRelease/ATCS.git
synced 2025-10-27 18:44:03 +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 }
|