Class VehicleCreationTO

java.lang.Object
org.opentcs.access.to.CreationTO
org.opentcs.access.to.model.VehicleCreationTO
All Implemented Interfaces:
java.io.Serializable

public class VehicleCreationTO
extends CreationTO
implements java.io.Serializable
A transfer object describing a block in the plant model.
See Also:
Serialized Form
  • Constructor Details

    • VehicleCreationTO

      public VehicleCreationTO​(@Nonnull java.lang.String name)
      Creates a new instance.
      Parameters:
      name - The name of this vehicle.
  • Method Details

    • withName

      public VehicleCreationTO withName​(@Nonnull java.lang.String name)
      Creates a copy of this object with the given name.
      Overrides:
      withName in class CreationTO
      Parameters:
      name - The new instance.
      Returns:
      A copy of this object, differing in the given name.
    • withProperties

      public VehicleCreationTO withProperties​(@Nonnull java.util.Map<java.lang.String,​java.lang.String> properties)
      Creates a copy of this object with the given properties.
      Overrides:
      withProperties in class CreationTO
      Parameters:
      properties - The new properties.
      Returns:
      A copy of this object, differing in the given properties.
    • withProperty

      public VehicleCreationTO withProperty​(@Nonnull java.lang.String key, @Nonnull java.lang.String value)
      Creates a copy of this object and adds the given property. If value == null, then the key-value pair is removed from the properties.
      Overrides:
      withProperty in class CreationTO
      Parameters:
      key - the key.
      value - the value
      Returns:
      A copy of this object that either includes the given entry in it's current properties, if value != null or excludes the entry otherwise.
    • getLength

      public int getLength()
      Returns the vehicle's length (in mm).
      Returns:
      The vehicle's length (in mm).
    • withLength

      public VehicleCreationTO withLength​(int length)
      Creates a copy of this object with the vehicle's given length (in mm).
      Parameters:
      length - The new length. Must be at least 1.
      Returns:
      A copy of this object, differing in the given vehicle length.
    • getEnergyLevelCritical

      public int getEnergyLevelCritical()
      Returns this vehicle's critical energy level (in percent of the maximum). The critical energy level is the one at/below which the vehicle should be recharged.
      Returns:
      This vehicle's critical energy level.
    • withEnergyLevelCritical

      public VehicleCreationTO withEnergyLevelCritical​(int energyLevelCritical)
      Creates a copy of this object with the given critical energy level. The critical energy level is the one at/below which the vehicle should be recharged.
      Parameters:
      energyLevelCritical - The new critical energy level. Must not be smaller than 0 or greater than 100.
      Returns:
      A copy of this object, differing in the given value.
    • getEnergyLevelGood

      public int getEnergyLevelGood()
      Returns this vehicle's good energy level (in percent of the maximum). The good energy level is the one at/above which the vehicle can be dispatched again when charging.
      Returns:
      This vehicle's good energy level.
    • withEnergyLevelGood

      public VehicleCreationTO withEnergyLevelGood​(int energyLevelGood)
      Creates a copy of this object with the vehicle's good energy level (in percent of the maximum). The good energy level is the one at/above which the vehicle can be dispatched again when charging.
      Parameters:
      energyLevelGood - The new good energy level. Must not be smaller than 0 or greater than 100.
      Returns:
      A copy of this object, differing in the given value.
    • getEnergyLevelFullyRecharged

      public int getEnergyLevelFullyRecharged()
      Returns this vehicle's fully recharged energy level (in percent of the maximum).
      Returns:
      This vehicle's fully recharged energy level.
    • withEnergyLevelFullyRecharged

      public VehicleCreationTO withEnergyLevelFullyRecharged​(int energyLevelFullyRecharged)
      Creates a copy of this object with the vehicle's fully recharged energy level (in percent of the maximum).
      Parameters:
      energyLevelFullyRecharged - The new fully recharged energy level. Must not be smaller than 0 or greater than 100.
      Returns:
      A copy of this object, differing in the given value.
    • getEnergyLevelSufficientlyRecharged

      public int getEnergyLevelSufficientlyRecharged()
      Returns this vehicle's sufficiently recharged energy level (in percent of the maximum).
      Returns:
      This vehicle's sufficiently recharged energy level.
    • withEnergyLevelSufficientlyRecharged

      public VehicleCreationTO withEnergyLevelSufficientlyRecharged​(int energyLevelSufficientlyRecharged)
      Creates a copy of this object with the vehicle's sufficiently recharged energy level (in percent of the maximum).
      Parameters:
      energyLevelSufficientlyRecharged - The new sufficiently recharged energy level. Must not be smaller than 0 or greater than 100.
      Returns:
      A copy of this object, differing in the given value.
    • getMaxVelocity

      public int getMaxVelocity()
    • withMaxVelocity

      public VehicleCreationTO withMaxVelocity​(int maxVelocity)
      Creates a copy of this object with the given maximum velocity (in mm/s).
      Parameters:
      maxVelocity - the new max velocity.
      Returns:
      A copy of this object, differing in the given value.
    • getMaxReverseVelocity

      public int getMaxReverseVelocity()
    • withMaxReverseVelocity

      public VehicleCreationTO withMaxReverseVelocity​(int maxReverseVelocity)
      Creates a copy of this object with the given maximum reverse velocity (in mm/s).
      Parameters:
      maxReverseVelocity - the new maximum reverse velocity.
      Returns:
      A copy of this object, differing in the given value.