Response #
Lang
is an Enum class listing the possible query syntax to use for search queries.
Properties #
Property | Type | Description |
---|---|---|
ELASTICSEARCH | Lang | For Elasticsearch query syntax. |
KONCORDE | Lang | For Koncorde query syntax. |
Those enums contain a lang
value, which is the query language as String
in lowercase.
print(Lang.ELASTICSEARCH.lang)
/*
"elasticsearch"
*/
print(Lang.KONCORDE.lang)
/*
"koncorde"
*/
Edit this page on Github(opens new window)