コード例 #1
0
ファイル: GraphNode.java プロジェクト: hmottestad/jena
 public Iterator<GraphNode> concatenateSiblings(Iterator<GraphNode> base) {
   return WrappedIterator.create(base).andThen(siblings.siblingIterator());
 }
コード例 #2
0
ファイル: GraphNode.java プロジェクト: hmottestad/jena
 public Iterator<GraphNode> siblingIterator() {
   return siblings.siblingIterator();
 }