public class ParamDetail extends AbstractModel
header, skipSign| Constructor and Description | 
|---|
ParamDetail()  | 
ParamDetail(ParamDetail 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 | 
|---|---|
String | 
getCurrentValue()
Get Current value of the parameter 
 | 
String | 
getDefault()
Get Default value 
 | 
String | 
getDescription()
Get Parameter description 
 | 
String[] | 
getEnumValue()
Get Optional enumerated values of the parameter. 
 | 
String | 
getFunc()
Get Specifies that when the parameter is set as a formula, Func returns the set formula content. 
 | 
String | 
getFuncPattern()
Get The default formula style of parameters that support formulas. 
 | 
Boolean | 
getIsFunc()
Get true - indicates a formula. 
 | 
Long | 
getIsGlobal()
Get Valid values: `1` (global parameter),  `0`  (non-global parameter). 
 | 
String | 
getMatchType()
Get The match type. 
 | 
String | 
getMatchValue()
Get Match values, which will be separated by comma when `MatchType` is `multiVal`. 
 | 
String | 
getMax()
Get Maximum value of the parameter 
 | 
String | 
getMin()
Get Minimum value of the parameter 
 | 
ModifiableInfo | 
getModifiableInfo()
Get Whether the parameter is modifiable. 
 | 
Long | 
getNeedReboot()
Get Whether to restart the database for the modified parameters to take effect. 
 | 
String | 
getParamName()
Get Parameter name 
 | 
String | 
getParamType()
Get Parameter type. 
 | 
Boolean | 
getSupportFunc()
Get Whether `func` is supported. 
 | 
void | 
setCurrentValue(String CurrentValue)
Set Current value of the parameter 
 | 
void | 
setDefault(String Default)
Set Default value 
 | 
void | 
setDescription(String Description)
Set Parameter description 
 | 
void | 
setEnumValue(String[] EnumValue)
Set Optional enumerated values of the parameter. 
 | 
void | 
setFunc(String Func)
Set Specifies that when the parameter is set as a formula, Func returns the set formula content. 
 | 
void | 
setFuncPattern(String FuncPattern)
Set The default formula style of parameters that support formulas. 
 | 
void | 
setIsFunc(Boolean IsFunc)
Set true - indicates a formula. 
 | 
void | 
setIsGlobal(Long IsGlobal)
Set Valid values: `1` (global parameter),  `0`  (non-global parameter). 
 | 
void | 
setMatchType(String MatchType)
Set The match type. 
 | 
void | 
setMatchValue(String MatchValue)
Set Match values, which will be separated by comma when `MatchType` is `multiVal`. 
 | 
void | 
setMax(String Max)
Set Maximum value of the parameter 
 | 
void | 
setMin(String Min)
Set Minimum value of the parameter 
 | 
void | 
setModifiableInfo(ModifiableInfo ModifiableInfo)
Set Whether the parameter is modifiable. 
 | 
void | 
setNeedReboot(Long NeedReboot)
Set Whether to restart the database for the modified parameters to take effect. 
 | 
void | 
setParamName(String ParamName)
Set Parameter name 
 | 
void | 
setParamType(String ParamType)
Set Parameter type. 
 | 
void | 
setSupportFunc(Boolean SupportFunc)
Set Whether `func` is supported. 
 | 
void | 
toMap(HashMap<String,String> map,
     String prefix)
Internal implementation, normal users should not use it. 
 | 
any, fromJsonString, getBinaryParams, GetHeader, getMultipartRequestParams, getSkipSign, isStream, set, SetHeader, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, setSkipSign, toJsonStringpublic ParamDetail()
public ParamDetail(ParamDetail source)
public String getParamName()
public void setParamName(String ParamName)
ParamName - Parameter namepublic String getParamType()
public void setParamType(String ParamType)
ParamType - Parameter type. Valid values:  `integer`, `enum`, `float`, `string`, `func`.public Boolean getSupportFunc()
public void setSupportFunc(Boolean SupportFunc)
SupportFunc - Whether `func` is supported. Valid values: `true` (supported), `false` (not supported).public String getDefault()
public void setDefault(String Default)
Default - Default valuepublic String getDescription()
public void setDescription(String Description)
Description - Parameter descriptionpublic String getCurrentValue()
public void setCurrentValue(String CurrentValue)
CurrentValue - Current value of the parameterpublic Long getNeedReboot()
public void setNeedReboot(Long NeedReboot)
NeedReboot - Whether to restart the database for the modified parameters to take effect. Valid values:  `0` (no), `1` (yes).public String getMax()
public void setMax(String Max)
Max - Maximum value of the parameterpublic String getMin()
public void setMin(String Min)
Min - Minimum value of the parameterpublic String[] getEnumValue()
public void setEnumValue(String[] EnumValue)
EnumValue - Optional enumerated values of the parameter. if it is a non-enumerated value, it is empty.public Long getIsGlobal()
public void setIsGlobal(Long IsGlobal)
IsGlobal - Valid values: `1` (global parameter),  `0`  (non-global parameter).public String getMatchType()
public void setMatchType(String MatchType)
MatchType - The match type. Valid value: `multiVal`.public String getMatchValue()
public void setMatchValue(String MatchValue)
MatchValue - Match values, which will be separated by comma when `MatchType` is `multiVal`.public Boolean getIsFunc()
public void setIsFunc(Boolean IsFunc)
IsFunc - true - indicates a formula. false - indicates it is not a formula.public String getFunc()
public void setFunc(String Func)
Func - Specifies that when the parameter is set as a formula, Func returns the set formula content.public ModifiableInfo getModifiableInfo()
public void setModifiableInfo(ModifiableInfo ModifiableInfo)
ModifiableInfo - Whether the parameter is modifiable.public String getFuncPattern()
public void setFuncPattern(String FuncPattern)
FuncPattern - The default formula style of parameters that support formulas.Copyright © 2025. All rights reserved.