org.optaplanner.examples.common.experimental.impl.IntervalBreakImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optaplanner-examples Show documentation
Show all versions of optaplanner-examples Show documentation
OptaPlanner solves planning problems.
This lightweight, embeddable planning engine implements powerful and scalable algorithms
to optimize business resource scheduling and planning.
This module contains the examples which demonstrate how to use it in a normal Java application.
package org.optaplanner.examples.common.experimental.impl;
import org.optaplanner.examples.common.experimental.api.IntervalBreak;
import org.optaplanner.examples.common.experimental.api.IntervalCluster;
final class IntervalBreakImpl, Difference_ extends Comparable>
implements IntervalBreak {
private IntervalCluster previousCluster;
private IntervalCluster nextCluster;
private Difference_ length;
IntervalBreakImpl(IntervalCluster previousCluster,
IntervalCluster nextCluster, Difference_ length) {
this.previousCluster = previousCluster;
this.nextCluster = nextCluster;
this.length = length;
}
@Override
public IntervalCluster getPreviousIntervalCluster() {
return previousCluster;
}
@Override
public IntervalCluster getNextIntervalCluster() {
return nextCluster;
}
@Override
public Difference_ getLength() {
return length;
}
void setPreviousCluster(IntervalCluster previousCluster) {
this.previousCluster = previousCluster;
}
void setNextCluster(IntervalCluster nextCluster) {
this.nextCluster = nextCluster;
}
void setLength(Difference_ length) {
this.length = length;
}
@Override
public String toString() {
return "IntervalBreak{" +
"previousCluster=" + previousCluster +
", nextCluster=" + nextCluster +
", length=" + length +
'}';
}
}