Class Customer
- java.lang.Object
-
- org.optaplanner.examples.common.domain.AbstractPersistableJackson
-
- org.optaplanner.examples.vehiclerouting.domain.Customer
-
- Direct Known Subclasses:
TimeWindowedCustomer
public class Customer extends AbstractPersistableJackson
-
-
Field Summary
Fields Modifier and Type Field Description protected intdemandprotected Locationlocationprotected CustomernextCustomerprotected CustomerpreviousCustomerprotected Vehiclevehicle-
Fields inherited from class org.optaplanner.examples.common.domain.AbstractPersistableJackson
id
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetDemand()longgetDistanceFromPreviousStandstill()longgetDistanceToDepot()LocationgetLocation()CustomergetNextCustomer()CustomergetPreviousCustomer()VehiclegetVehicle()voidsetDemand(int demand)voidsetLocation(Location location)voidsetNextCustomer(Customer nextCustomer)voidsetPreviousCustomer(Customer previousCustomer)voidsetVehicle(Vehicle vehicle)StringtoString()-
Methods inherited from class org.optaplanner.examples.common.domain.AbstractPersistableJackson
getId
-
-
-
-
Constructor Detail
-
Customer
public Customer()
-
Customer
public Customer(long id, Location location, int demand)
-
-
Method Detail
-
getLocation
public Location getLocation()
-
setLocation
public void setLocation(Location location)
-
getDemand
public int getDemand()
-
setDemand
public void setDemand(int demand)
-
getVehicle
public Vehicle getVehicle()
-
setVehicle
public void setVehicle(Vehicle vehicle)
-
getPreviousCustomer
public Customer getPreviousCustomer()
-
setPreviousCustomer
public void setPreviousCustomer(Customer previousCustomer)
-
getNextCustomer
public Customer getNextCustomer()
-
setNextCustomer
public void setNextCustomer(Customer nextCustomer)
-
getDistanceFromPreviousStandstill
public long getDistanceFromPreviousStandstill()
-
getDistanceToDepot
public long getDistanceToDepot()
-
toString
public String toString()
- Overrides:
toStringin classAbstractPersistableJackson
-
-