public class FullTextInfo extends AbstractModel
Constructor and Description |
---|
FullTextInfo() |
FullTextInfo(FullTextInfo source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
Boolean |
getCaseSensitive()
Get Case sensitivity
|
Boolean |
getContainZH()
Get Whether Chinese characters are contained
Note: this field may return `null`, indicating that no valid values can be obtained.
|
String |
getTokenizer()
Get Separator of the full-text index.
|
void |
setCaseSensitive(Boolean CaseSensitive)
Set Case sensitivity
|
void |
setContainZH(Boolean ContainZH)
Set Whether Chinese characters are contained
Note: this field may return `null`, indicating that no valid values can be obtained.
|
void |
setTokenizer(String Tokenizer)
Set Separator of the full-text index.
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonString
public FullTextInfo()
public FullTextInfo(FullTextInfo source)
public Boolean getCaseSensitive()
public void setCaseSensitive(Boolean CaseSensitive)
CaseSensitive
- Case sensitivitypublic String getTokenizer()
public void setTokenizer(String Tokenizer)
Tokenizer
- Separator of the full-text index. Each character represents a separator.
Only symbols, \n\t\r, and escape character \ are supported.
Note: \n\t\r can be directly enclosed in double quotes as the input parameter without escaping. When debugging with API Explorer, use the JSON parameter input method to avoid repeated escaping of \n\t\r.public Boolean getContainZH()
public void setContainZH(Boolean ContainZH)
ContainZH
- Whether Chinese characters are contained
Note: this field may return `null`, indicating that no valid values can be obtained.Copyright © 2023. All rights reserved.