Class DslTermQuery
- java.lang.Object
-
- io.vertigo.datafactory.impl.search.dsl.model.DslTermQuery
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DslTermQuery.EscapeMode
Reserved mode.
-
Constructor Summary
Constructors Constructor Description DslTermQuery(String preBody, String preTerm, String termField, String postTerm, DslTermQuery.EscapeMode escapeMode, Optional<String> defaultValue, String postBody)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<String>
getDefaultValue()
DslTermQuery.EscapeMode
getEscapeMode()
String
getPostBody()
String
getPostTerm()
String
getPreBody()
String
getPreTerm()
String
getTermField()
String
toString()
-
-
-
Constructor Detail
-
DslTermQuery
public DslTermQuery(String preBody, String preTerm, String termField, String postTerm, DslTermQuery.EscapeMode escapeMode, Optional<String> defaultValue, String postBody)
- Parameters:
preBody
- String before bodypreTerm
- String before bodytermField
- Term field (criteria's field)postBody
- String after bodyescapeMode
- Reserved escapeMode of criteriadefaultValue
- Optional default value (used if null or empty criteria)postTerm
- String after body
-
-
Method Detail
-
getPreBody
public String getPreBody()
- Returns:
- preBody
-
getPreTerm
public String getPreTerm()
- Returns:
- preTerm
-
getTermField
public String getTermField()
- Returns:
- termField
-
getPostTerm
public String getPostTerm()
- Returns:
- postTerm
-
getEscapeMode
public DslTermQuery.EscapeMode getEscapeMode()
- Returns:
- escapeMode
-
getPostBody
public String getPostBody()
- Returns:
- postBody
-
-