View Javadoc

1   package cz.cuni.amis.pogamut.sposh.elements;
2   
3   /**
4    * All elements that can exists in the plan and their type names that will be
5    * used in the path.
6    */
7   public enum LapType {
8   
9       ACTION("A"),
10      ACTION_PATTERN("AP"),
11      ADOPT("AD"),
12      COMPETENCE("C"),
13      COMPETENCE_ELEMENT("CE"),
14      DRIVE_COLLECTION("DC"),
15      DRIVE_ELEMENT("DE"),
16      PLAN("P"),
17      SENSE("S");
18  
19      private final String pathName;
20  
21      private LapType(String name) {
22          this.pathName = name;
23      }
24  
25      public String getName() {
26          return pathName;
27      }
28  }