org.iq80.leveldb.table.UserComparator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SWBTripleStoreLevelDB Show documentation
Show all versions of SWBTripleStoreLevelDB Show documentation
TripleStore implementation for SemanticWebBuilder using LevelDB
The newest version!
package org.iq80.leveldb.table;
import org.iq80.leveldb.util.Slice;
import java.util.Comparator;
// todo this interface needs more thought
public interface UserComparator extends Comparator
{
String name();
Slice findShortestSeparator(Slice start, Slice limit);
Slice findShortSuccessor(Slice key);
}