public class ValueInfo extends AbstractModel
Constructor and Description |
---|
ValueInfo() |
ValueInfo(ValueInfo 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 |
getContainZH()
Get Whether Chinese characters are contained.
|
Boolean |
getSqlFlag()
Get Whether the analysis feature is enabled for the field
|
String |
getTokenizer()
Get Separator of fields.
|
String |
getType()
Get Field type.
|
void |
setContainZH(Boolean ContainZH)
Set Whether Chinese characters are contained.
|
void |
setSqlFlag(Boolean SqlFlag)
Set Whether the analysis feature is enabled for the field
|
void |
setTokenizer(String Tokenizer)
Set Separator of fields.
|
void |
setType(String Type)
Set Field type.
|
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 ValueInfo()
public ValueInfo(ValueInfo source)
public String getType()
public void setType(String Type)
Type
- Field type. Valid values: `long`, `text`, `double`public String getTokenizer()
public void setTokenizer(String Tokenizer)
Tokenizer
- Separator of fields. Each character represents a separator.
Only symbols, \n\t\r, and escape character \ are supported.
`long` and `double` fields need to be null.
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 getSqlFlag()
public void setSqlFlag(Boolean SqlFlag)
SqlFlag
- Whether the analysis feature is enabled for the fieldpublic Boolean getContainZH()
public void setContainZH(Boolean ContainZH)
ContainZH
- Whether Chinese characters are contained. For `long` and `double` fields, set them to `false`.
Note: This field may return null, indicating that no valid values can be obtained.Copyright © 2023. All rights reserved.