
com.activitystream.aspects.TimedStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
For a description please see https://github.com/activitystream/as-sdk-java
package com.activitystream.aspects;
public enum TimedStatus {
VALID, DUE, SCHEDULE, PERIOD;
@Override
public String toString() {
if (this == VALID) return "valid";
if (this == DUE) return "due";
if (this == SCHEDULE) return "schedule";
if (this == PERIOD) return "period";
throw new RuntimeException("unhandled action of timed action");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy