|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.kuka.nav.fleet.Plan
public class Plan
Represents a plan of a single robot. A plan consists of a list of PlanSteps. Furthermore, it provides
access to the MobileRobot that is supposed to execute the plan.
| Constructor Summary | |
|---|---|
Plan(List<PlanStep> planSteps,
com.kuka.nav.robot.MobileRobot robot)
Constructor. |
|
| Method Summary | |
|---|---|
List<PlanStep> |
getPlanSteps()
Gets an unmodifiable view of this plan's list of PlanSteps. |
com.kuka.nav.robot.MobileRobot |
getRobot()
Gets the MobileRobot executing this plan. |
boolean |
isFirstStep(TopologyNode node)
Deprecated. (since 1.11, reason: it is simpler to retrieve node from first plan step and compare them directly, refactoring advice: use getPlanSteps() and PlanStep.getNode() to access node of
first plan step directly). |
boolean |
isLastStep(TopologyNode node)
Deprecated. (since 1.11, reason: it is simpler to retrieve node from last plan step and compare them directly, refactoring advice: use getPlanSteps() and PlanStep.getNode() to access node of last
plan step directly). |
String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public Plan(List<PlanStep> planSteps,
com.kuka.nav.robot.MobileRobot robot)
planSteps - a list of PlanSteps that should be added to this planrobot - the robot to execute this plan| Method Detail |
|---|
public com.kuka.nav.robot.MobileRobot getRobot()
MobileRobot executing this plan.
public List<PlanStep> getPlanSteps()
PlanSteps.
@Deprecated public boolean isFirstStep(TopologyNode node)
getPlanSteps() and PlanStep.getNode() to access node of
first plan step directly).
true if and only if the first step of this plan visits the given topology node instance.
node - the node
true if and only if the given node is the first one visited in this plan.@Deprecated public boolean isLastStep(TopologyNode node)
getPlanSteps() and PlanStep.getNode() to access node of last
plan step directly).
true if and only if the last step of this plan visits the given topology node instance.
node - the node
true if and only if the given node is the last one visited is this plan.public String toString()
toString in class Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||