public class ParameterDetail extends AbstractModel
header, skipSign| Constructor and Description | 
|---|
ParameterDetail()  | 
ParameterDetail(ParameterDetail 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 of the parameter 
 | 
String | 
getDescription()
Get Parameter description 
 | 
String[] | 
getEnumValue()
Get Enumerated values of the parameter. 
 | 
Boolean | 
getIsNotSupportEdit()
Get Whether the parameter can be modified Note: This field may return null, indicating that no valid values can be obtained. 
 | 
Long | 
getMax()
Get Maximum value of the parameter 
 | 
String | 
getMaxFunc()
Get Maximum parameter value, which is valid only when `ParamType` is set to `func` 
 | 
Long | 
getMin()
Get Minimum value of the parameter 
 | 
String | 
getMinFunc()
Get Minimum parameter value, which is valid only when `ParamType` is set to `func` 
 | 
String | 
getName()
Get Parameter name 
 | 
Long | 
getNeedReboot()
Get Whether the database needs to be restarted for the modified parameter to take effect. 
 | 
String | 
getParamType()
Get Parameter type. 
 | 
void | 
setCurrentValue(String CurrentValue)
Set Current value of the parameter 
 | 
void | 
setDefault(String Default)
Set Default value of the parameter 
 | 
void | 
setDescription(String Description)
Set Parameter description 
 | 
void | 
setEnumValue(String[] EnumValue)
Set Enumerated values of the parameter. 
 | 
void | 
setIsNotSupportEdit(Boolean IsNotSupportEdit)
Set Whether the parameter can be modified Note: This field may return null, indicating that no valid values can be obtained. 
 | 
void | 
setMax(Long Max)
Set Maximum value of the parameter 
 | 
void | 
setMaxFunc(String MaxFunc)
Set Maximum parameter value, which is valid only when `ParamType` is set to `func` 
 | 
void | 
setMin(Long Min)
Set Minimum value of the parameter 
 | 
void | 
setMinFunc(String MinFunc)
Set Minimum parameter value, which is valid only when `ParamType` is set to `func` 
 | 
void | 
setName(String Name)
Set Parameter name 
 | 
void | 
setNeedReboot(Long NeedReboot)
Set Whether the database needs to be restarted for the modified parameter to take effect. 
 | 
void | 
setParamType(String ParamType)
Set Parameter type. 
 | 
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 ParameterDetail()
public ParameterDetail(ParameterDetail source)
public String getName()
public void setName(String Name)
Name - Parameter namepublic String getParamType()
public void setParamType(String ParamType)
ParamType - Parameter type. Valid values: `integer`, `enum`, `float`, `string`, `func`public String getDefault()
public void setDefault(String Default)
Default - Default value of the parameterpublic 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 the database needs to be restarted for the modified parameter to take effect. Value range: 0 (no); 1 (yes)public Long getMax()
public void setMax(Long Max)
Max - Maximum value of the parameterpublic Long getMin()
public void setMin(Long Min)
Min - Minimum value of the parameterpublic String[] getEnumValue()
public void setEnumValue(String[] EnumValue)
EnumValue - Enumerated values of the parameter. It is null if the parameter is non-enumeratedpublic String getMaxFunc()
public void setMaxFunc(String MaxFunc)
MaxFunc - Maximum parameter value, which is valid only when `ParamType` is set to `func`public String getMinFunc()
public void setMinFunc(String MinFunc)
MinFunc - Minimum parameter value, which is valid only when `ParamType` is set to `func`public Boolean getIsNotSupportEdit()
public void setIsNotSupportEdit(Boolean IsNotSupportEdit)
IsNotSupportEdit - Whether the parameter can be modified Note: This field may return null, indicating that no valid values can be obtained.Copyright © 2025. All rights reserved.