public class ParameterDetail extends AbstractModel
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
|
Long |
getMax()
Get Maximum value of the parameter
|
Long |
getMin()
Get Minimum value of the parameter
|
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 Data type of the parameter.
|
Long |
getStatus()
Get Parameter status.
|
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 |
setMax(Long Max)
Set Maximum value of the parameter
|
void |
setMin(Long Min)
Set Minimum value of the parameter
|
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 Data type of the parameter.
|
void |
setStatus(Long Status)
Set Parameter status.
|
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 ParameterDetail()
public ParameterDetail(ParameterDetail source)
public String getName()
public void setName(String Name)
Name
- Parameter namepublic String getParamType()
public void setParamType(String ParamType)
ParamType
- Data type of the parameter. Valid values: `integer`, `enum`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. Valid values: `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 parameterpublic Long getStatus()
public void setStatus(Long Status)
Status
- Parameter status. Valid values: `0` (normal), `1` (modifying)Copyright © 2023. All rights reserved.