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
Note: this field may return `null`, indicating that no valid values can be obtained.
|
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
Note: this field may return `null`, indicating that no valid values can be obtained.
|
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;
Supports only English punctuation marks and (\n\t\r);
`long` and `double` fields need to be null;
We recommend you use (@&?|#()='",;:<>[]{}/ \n\t\r\\) as separators for `text` fields;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
Note: this field may return `null`, indicating that no valid values can be obtained.Copyright © 2022. All rights reserved.