25 lines
375 B
Java
Raw Normal View History

2018-07-06 13:30:00 +00:00
package com.eu.habbo.habbohotel.permissions;
2019-05-26 21:14:53 +03:00
public enum PermissionSetting {
2019-03-18 01:22:00 +00:00
2018-07-06 13:30:00 +00:00
DISALLOWED,
2019-03-18 01:22:00 +00:00
2018-07-06 13:30:00 +00:00
ALLOWED,
2019-03-18 01:22:00 +00:00
2018-07-06 13:30:00 +00:00
ROOM_OWNER;
2019-05-26 21:14:53 +03:00
public static PermissionSetting fromString(String value) {
switch (value) {
2018-07-06 13:30:00 +00:00
case "1":
return ALLOWED;
case "2":
return ROOM_OWNER;
}
return DISALLOWED;
}
}