◆ FunnelVertexDOT()
org.turro.web.funnel.graph.FunnelVertexDOT.FunnelVertexDOT |
( |
Object |
item | ) |
|
◆ compareTo()
int org.turro.web.funnel.graph.FunnelVertexDOT.compareTo |
( |
FunnelVertexDOT |
o | ) |
|
◆ equals()
boolean org.turro.web.funnel.graph.FunnelVertexDOT.equals |
( |
Object |
obj | ) |
|
Definition at line 109 of file FunnelVertexDOT.java.
116 if (getClass() != obj.getClass()) {
120 return Objects.equals(this.identifier, other.identifier);
FunnelVertexDOT(Object item)
◆ getCaption()
String org.turro.web.funnel.graph.FunnelVertexDOT.getCaption |
( |
| ) |
|
Definition at line 53 of file FunnelVertexDOT.java.
54 if(item instanceof WebItem webItem) {
55 return webItem.getCaption();
56 }
else if(item instanceof WebGoal webGoal) {
57 return webGoal.getCaption();
◆ getColor()
String org.turro.web.funnel.graph.FunnelVertexDOT.getColor |
( |
| ) |
|
Definition at line 73 of file FunnelVertexDOT.java.
74 if(item instanceof WebItem webItem) {
75 return switch(webItem.getType()) {
76 case TARGET ->
"#1EBC30";
77 case SOLUTION ->
"#10A3A3";
78 case SERVICE ->
"#2185D0";
79 case CHAIN ->
"#767676";
81 }
else if(item instanceof WebGoal webGoal) {
◆ getIdentifier()
String org.turro.web.funnel.graph.FunnelVertexDOT.getIdentifier |
( |
| ) |
|
Definition at line 43 of file FunnelVertexDOT.java.
44 if(item instanceof WebItem webItem) {
45 return webItem.getWebTag();
46 }
else if(item instanceof WebGoal webGoal) {
47 return webGoal.getGoalAction();
◆ getNexts()
Set<Object> org.turro.web.funnel.graph.FunnelVertexDOT.getNexts |
( |
| ) |
|
Definition at line 88 of file FunnelVertexDOT.java.
89 if(item instanceof WebItem webItem) {
90 Set<Object>
set =
new HashSet<>();
91 set.addAll(webItem.getNexts());
92 set.addAll(webItem.getGoals());
95 return Collections.EMPTY_SET;
◆ getOrdering()
int org.turro.web.funnel.graph.FunnelVertexDOT.getOrdering |
( |
| ) |
|
Definition at line 63 of file FunnelVertexDOT.java.
64 if(item instanceof WebItem webItem) {
65 return webItem.getOrdering();
66 }
else if(item instanceof WebGoal webGoal) {
67 return webGoal.getOrdering();
◆ hashCode()
int org.turro.web.funnel.graph.FunnelVertexDOT.hashCode |
( |
| ) |
|
The documentation for this class was generated from the following file: