com.orientechnologies.lucene.query.OLuceneKeyAndMetadata 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.query;
import com.orientechnologies.lucene.collections.OLuceneCompositeKey;
import com.orientechnologies.orient.core.record.impl.ODocument;
/** Created by frank on 08/06/2017. */
public class OLuceneKeyAndMetadata {
public final OLuceneCompositeKey key;
public final ODocument metadata;
public OLuceneKeyAndMetadata(final OLuceneCompositeKey key, final ODocument metadata) {
this.key = key;
this.metadata = metadata;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy