org.optaplanner.examples.nurserostering.domain.Shift 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.nurserostering.domain;
import org.optaplanner.examples.common.domain.AbstractPersistable;
import org.optaplanner.examples.common.persistence.jackson.JacksonUniqueIdGenerator;
import org.optaplanner.examples.common.swingui.components.Labeled;
import com.fasterxml.jackson.annotation.JsonIdentityInfo;
@JsonIdentityInfo(generator = JacksonUniqueIdGenerator.class)
public class Shift extends AbstractPersistable implements Labeled {
private ShiftDate shiftDate;
private ShiftType shiftType;
private int index;
private int requiredEmployeeSize;
public Shift() {
}
public Shift(long id) {
super(id);
}
public Shift(long id, ShiftDate shiftDate, ShiftType shiftType, int index, int requiredEmployeeSize) {
this(id);
this.shiftDate = shiftDate;
this.shiftType = shiftType;
this.index = index;
this.requiredEmployeeSize = requiredEmployeeSize;
}
public ShiftDate getShiftDate() {
return shiftDate;
}
public void setShiftDate(ShiftDate shiftDate) {
this.shiftDate = shiftDate;
}
public ShiftType getShiftType() {
return shiftType;
}
public void setShiftType(ShiftType shiftType) {
this.shiftType = shiftType;
}
public int getIndex() {
return index;
}
public void setIndex(int index) {
this.index = index;
}
public int getRequiredEmployeeSize() {
return requiredEmployeeSize;
}
public void setRequiredEmployeeSize(int requiredEmployeeSize) {
this.requiredEmployeeSize = requiredEmployeeSize;
}
@Override
public String getLabel() {
return shiftType.getLabel() + " of " + shiftDate.getLabel();
}
@Override
public String toString() {
return shiftDate + "/" + shiftType;
}
}