mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
28 lines
581 B
Java
28 lines
581 B
Java
package com.avaje.ebeaninternal.server.expression;
|
|
|
|
import com.avaje.ebean.search.TextSimple;
|
|
|
|
import java.io.IOException;
|
|
|
|
/**
|
|
* Full text Multi-Match expression.
|
|
*/
|
|
class TextSimpleExpression extends AbstractTextExpression {
|
|
|
|
private final String search;
|
|
|
|
private final TextSimple options;
|
|
|
|
public TextSimpleExpression(String search, TextSimple options) {
|
|
super(null);
|
|
this.search = search;
|
|
this.options = options;
|
|
}
|
|
|
|
@Override
|
|
public void writeDocQuery(DocQueryContext context) throws IOException {
|
|
context.writeTextSimple(search, options);
|
|
}
|
|
|
|
}
|