ScoreNode
10091010101110121013101410151016101710181019102010211022
QueryHits hits = null; try { hits = handler.executeQuery(query); ScoreNode sn; while ((sn = hits.nextScoreNode()) != null) { result.add(sn.getNodeId()); } return result; } catch (IndexOfflineIOException e) {
10891090109110921093109410951096109710981099110011011102
771772773774775776777778779780781782783784785786
Set<String> result = new HashSet<String>(); try { QueryHits hits = handler.executeQuery(query); ScoreNode sn; while ((sn = hits.nextScoreNode()) != null) { // Node node = session.getNodeById(sn.getNodeId()); result.add(sn.getNodeId()); } } catch (IOException e) { throw new RepositoryException(e.getLocalizedMessage(), e);
757758759760761762763764765766767768769770771772
10851086108710881089109010911092109310941095109610971098
731732733734735736737738739740741742743744745
throws RepositoryException { Set<String> result = new HashSet<String>(); try { QueryHits hits = handler.executeQuery(query); ScoreNode sn; while ((sn = hits.nextScoreNode()) != null) { // Node node = session.getNodeById(sn.getNodeId()); result.add(sn.getNodeId()); } } catch (IOException e) { throw new RepositoryException(e.getLocalizedMessage(), e); } return result;
781782783784785786787788789790791792793794795796
10771078107910801081108210831084108510861087108810891090
971972973974975976977978979980981982983984