com.activitystream.aspects.TimedStatus Maven / Gradle / Ivy
package com.activitystream.aspects;
public enum TimedStatus {
VALID, DUE;
@Override
public String toString() {
if (this == VALID) return "valid";
if (this == DUE) return "due";
throw new RuntimeException("unhandled action of timed action");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy