https://github.com/teerjk/VarSifter
Raw File
Tip revision: 7e57e5857b08f5253f28e96477fc211f67a0ffea authored by Jamie K. Teer on 27 April 2020, 14:42:41 UTC
-Documentation updates to point to github.
Tip revision: 7e57e58
AbstractQueryModule.java
import java.util.BitSet;

/**
*   Interface defining the custom compiled QueryModule object
*   @author Jamie K. Teer
*/
public interface AbstractQueryModule {

    /**
    *   Execute the QueryModule
    */
    public abstract BitSet executeCustomQuery();
}
back to top