org.nlpcn.es4sql.domain.hints.Hint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-sql Show documentation
Show all versions of elasticsearch-sql Show documentation
Query elasticsearch using SQL
The newest version!
package org.nlpcn.es4sql.domain.hints;
/**
* Created by Eliran on 5/9/2015.
*/
public class Hint {
private HintType type;
private Object[] params;
public Hint(HintType type,Object[] params) {
this.type = type;
this.params = params;
}
public HintType getType() {
return type;
}
public Object[] getParams() {
return params;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy