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