org.optaplanner.examples.pas.domain.Department 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.pas.domain;
import java.util.List;
import org.optaplanner.examples.common.domain.AbstractPersistable;
import org.optaplanner.examples.common.swingui.components.Labeled;
import com.fasterxml.jackson.annotation.JsonIdentityInfo;
import com.fasterxml.jackson.annotation.ObjectIdGenerators;
@JsonIdentityInfo(scope = Department.class, generator = ObjectIdGenerators.PropertyGenerator.class, property = "id")
public class Department extends AbstractPersistable implements Labeled {
private String name;
private Integer minimumAge = null;
private Integer maximumAge = null;
private List roomList;
public Department() {
}
public Department(long id, String name) {
super(id);
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getMinimumAge() {
return minimumAge;
}
public void setMinimumAge(Integer minimumAge) {
this.minimumAge = minimumAge;
}
public Integer getMaximumAge() {
return maximumAge;
}
public void setMaximumAge(Integer maximumAge) {
this.maximumAge = maximumAge;
}
public List getRoomList() {
return roomList;
}
public void setRoomList(List roomList) {
this.roomList = roomList;
}
public int countHardDisallowedAdmissionPart(AdmissionPart admissionPart) {
return countDisallowedPatientAge(admissionPart.getPatient());
}
public int countDisallowedPatientAge(Patient patient) {
int count = 0;
if (minimumAge != null && patient.getAge() < minimumAge) {
count += 100;
}
if (maximumAge != null && patient.getAge() > maximumAge) {
count += 100;
}
return count;
}
@Override
public String getLabel() {
String label = name;
if (minimumAge != null) {
label += "(≥" + minimumAge + ")";
}
if (maximumAge != null) {
label += "(≤" + maximumAge + ")";
}
return label;
}
@Override
public String toString() {
return name;
}
}