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 Enumerated values of the parameter.
|
String |
getFunc()
Get Formula content returned when `ParamType` is `func`.
|
Boolean |
getIsFunc()
Get Whether it is a `func` type.
|
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 can be modified Note: This field may return null, indicating that no valid values can be obtained.
|
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 Enumerated values of the parameter.
|
void |
setFunc(String Func)
Set Formula content returned when `ParamType` is `func`.
|
void |
setIsFunc(Boolean IsFunc)
Set Whether it is a `func` type.
|
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 can be modified Note: This field may return null, indicating that no valid values can be obtained.
|
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, set, SetHeader, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, setSkipSign, toJsonString
public 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
- Enumerated values of the parameter. It is null if the parameter is non-enumerated. Note: This field may return null, indicating that no valid values can be obtained.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
- Whether it is a `func` type. Valid values: `true` (yes), `false` (no). Note: This field may return null, indicating that no valid values can be obtained.public String getFunc()
public void setFunc(String Func)
Func
- Formula content returned when `ParamType` is `func`. Note: This field may return null, indicating that no valid values can be obtained.public ModifiableInfo getModifiableInfo()
public void setModifiableInfo(ModifiableInfo ModifiableInfo)
ModifiableInfo
- Whether the parameter can be modified Note: This field may return null, indicating that no valid values can be obtained.Copyright © 2024. All rights reserved.