Unicopia/src/main/java/com/minelittlepony/unicopia/enchanting/PageState.java

25 lines
456 B
Java
Raw Normal View History

package com.minelittlepony.unicopia.enchanting;
2019-02-08 16:56:28 +01:00
public enum PageState {
LOCKED,
UNREAD,
READ;
public boolean isLocked() {
return this == LOCKED;
}
public boolean isUnread() {
return this == UNREAD;
}
public static PageState of(String s) {
try {
if (s != null)
return valueOf(s.toUpperCase());
} catch (Throwable e) {}
return PageState.LOCKED;
}
}