- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 39 of file FunnelGraph.java.
◆ behaveAs()
Definition at line 112 of file FunnelGraph.java.
static FunnelGraph load()
WebItemType getBehaviour(WebItem item)
◆ getBehaviour()
Definition at line 41 of file FunnelGraph.java.
43 return vertex ==
null ? null : vertex.getActingType();
FunnelVertex getVertex(String webTag)
◆ getChains()
Set<FunnelVertex> org.turro.web.funnel.graph.FunnelGraph.getChains |
( |
| ) |
|
Definition at line 58 of file FunnelGraph.java.
59 return getItems(vertex -> vertex.isChain());
Set< FunnelVertex > getItems(Predicate< FunnelVertex > filter)
◆ getGoal()
WebGoal org.turro.web.funnel.graph.FunnelGraph.getGoal |
( |
String |
goalAction | ) |
|
Definition at line 80 of file FunnelGraph.java.
81 return vertexSet().stream()
82 .flatMap(vertex -> vertex.getItem().getGoals().stream())
83 .filter(goal -> goal.getGoalAction().equals(goalAction))
84 .findAny().orElse(
null);
◆ getItems()
Definition at line 62 of file FunnelGraph.java.
63 return vertexSet().stream()
65 .collect(Collectors.toCollection(TreeSet::new));
◆ getServices()
Set<FunnelVertex> org.turro.web.funnel.graph.FunnelGraph.getServices |
( |
| ) |
|
◆ getSolutions()
Set<FunnelVertex> org.turro.web.funnel.graph.FunnelGraph.getSolutions |
( |
| ) |
|
◆ getTargets()
Set<FunnelVertex> org.turro.web.funnel.graph.FunnelGraph.getTargets |
( |
| ) |
|
◆ getVertex() [1/2]
FunnelVertex org.turro.web.funnel.graph.FunnelGraph.getVertex |
( |
String |
webTag | ) |
|
Definition at line 68 of file FunnelGraph.java.
69 return vertexSet().stream()
70 .filter(vertex -> vertex.getWebTag().equals(webTag))
71 .findAny().orElse(
null);
◆ getVertex() [2/2]
Definition at line 74 of file FunnelGraph.java.
75 return vertexSet().stream()
76 .filter(vertex -> vertex.getItem().equals(item))
77 .findAny().orElse(
null);
◆ load()
static FunnelGraph org.turro.web.funnel.graph.FunnelGraph.load |
( |
| ) |
|
|
static |
◆ dao
final Cached<Dao> org.turro.web.funnel.graph.FunnelGraph.dao = Cached.instance(() -> new ElephantPU()) |
|
protected |
The documentation for this class was generated from the following file: