berlin.yuna.survey.model.Route Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of surveys Show documentation
Show all versions of surveys Show documentation
Survey is a plain java library to provide a base for surveys / questionnaires. It also provides a
function to generate diagrams and to measure answer times.
package berlin.yuna.survey.model;
import berlin.yuna.survey.model.types.FlowItem;
import java.util.Objects;
import java.util.function.Function;
@SuppressWarnings({"unused", "UnusedReturnValue"})
public class Route implements Comparable>{
private final FlowItem, ?> target;
private final Function function;
private final Condition condition;
private final boolean backwards;
public Route(final FlowItem, ?> target, final Function function, final Condition condition, final boolean backwards) {
this.target = target;
this.condition = condition;
this.function = function;
this.backwards = backwards;
}
public boolean apply(final T answer) {
return (hasCondition() && condition.apply(answer)) || (hasFunction() && function.apply(answer));
}
public boolean hasCondition() {
return condition != null;
}
public boolean hasTarget() {
return target != null;
}
public boolean hasFunction() {
return function != null;
}
public boolean hasAnyCondition() {
return hasCondition() || hasFunction();
}
public boolean hasNoCondition() {
return !hasAnyCondition();
}
public String getLabel() {
return hasCondition() ? (condition.getLabel() != null ? condition.getLabel() : condition.getClass().getSimpleName()) : null;
}
public FlowItem, ?> target() {
return target;
}
public Condition getCondition() {
return condition;
}
public boolean isBackwardFlow() {
return backwards;
}
public boolean isForwardFlow() {
return !isBackwardFlow();
}
@Override
public boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
final Route> route = (Route>) o;
if (backwards != route.backwards) return false;
if (!Objects.equals(function, route.function)) return false;
return Objects.equals(condition, route.condition);
}
@Override
public int hashCode() {
int result = function != null ? function.hashCode() : 0;
result = 31 * result + (condition != null ? condition.hashCode() : 0);
result = 31 * result + (backwards ? 1 : 0);
return result;
}
@Override
public String toString() {
return "AnswerRoute{" +
"target=" + target +
", function=" + function +
", choice=" + getLabel() +
", backwards=" + backwards +
'}';
}
@Override
public int compareTo(final Route> route) {
return Boolean.compare(backwards, route.backwards);
}
}