com.orientechnologies.lucene.collections.LuceneIndexTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orientdb-lucene Show documentation
Show all versions of orientdb-lucene Show documentation
Lucene plugin for OrientDB NoSQL document graph dbms
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