com.ivanceras.db.api.IDatabaseSearch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orm Show documentation
Show all versions of orm Show documentation
ORM - Core Library for Database
package com.ivanceras.db.api;
/**
* Searchable database interface
* @author lee
*
*/
public interface IDatabaseSearch {
void soundsLike(String keyword);
void startsWith(String keyword);
void contains(String keyword);
void columns(String ...columns);
}