Returns all arrows (functional dependencies) in this ArrowSet.
()
| 245 | * Returns all arrows (functional dependencies) in this ArrowSet. |
| 246 | */ |
| 247 | public ImmutableList<Arrow> getArrows() { |
| 248 | return arrowSet; |
| 249 | } |
| 250 | |
| 251 | @Override public ArrowSet clone() { |
| 252 | return new ArrowSet(new HashSet<>(this.arrowSet)); |
no outgoing calls