75767778798081828384
private Iterable<Edge> getInEdges(String... labels) { if (labels.length == 0) { return this.inEdges; } else { Pipe pipe = new LabelFilterPipe(Compare.EQUAL, labels); pipe.setStarts(this.inEdges); return pipe; } }