All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.orientechnologies.lucene.collections.LuceneIndexTransformer Maven / Gradle / Ivy

The newest version!
package com.orientechnologies.lucene.collections;

import com.orientechnologies.common.util.ORawPair;
import com.orientechnologies.orient.core.id.ORID;
import java.util.stream.Stream;

/** Created by frank on 03/05/2017. */
public final class LuceneIndexTransformer {
  public static Stream> transformToStream(
      OLuceneResultSet resultSet, Object key) {
    return resultSet.stream()
        .map((identifiable -> new ORawPair<>(key, identifiable.getIdentity())));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy