mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-04-28 01:36:08 +00:00
18 lines
296 B
Java
18 lines
296 B
Java
|
package com.beemdevelopment.aegis;
|
||
|
|
||
|
public enum AccountNamePosition {
|
||
|
HIDDEN,
|
||
|
END,
|
||
|
BELOW;
|
||
|
|
||
|
private static AccountNamePosition[] _values;
|
||
|
|
||
|
static {
|
||
|
_values = values();
|
||
|
}
|
||
|
|
||
|
public static AccountNamePosition fromInteger(int x) {
|
||
|
return _values[x];
|
||
|
}
|
||
|
}
|