mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 08:23:15 +00:00
検索モード実装
This commit is contained in:
parent
c2aada949e
commit
e8f51d3717
|
@ -0,0 +1,14 @@
|
||||||
|
package one.nem.lacerta.model.search;
|
||||||
|
|
||||||
|
public enum SearchMode {
|
||||||
|
AUTO("auto"),
|
||||||
|
EXACT("exact"),
|
||||||
|
LIKE("like"),
|
||||||
|
FULLTEXT("fulltext");
|
||||||
|
|
||||||
|
private final String value;
|
||||||
|
|
||||||
|
private SearchMode(String value) {
|
||||||
|
this.value = value;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user