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 参数当前值
|
String |
getDefault()
Get 参数默认值
|
String |
getDescription()
Get 参数描述
|
String[] |
getEnumValue()
Get 参数的可选枚举值。如果为非枚举参数,则为空
注意:此字段可能返回 null,表示取不到有效值。
|
String |
getMax()
Get 参数允许的最大值
注意:此字段可能返回 null,表示取不到有效值。
|
String |
getMin()
Get 参数允许的最小值
注意:此字段可能返回 null,表示取不到有效值。
|
String |
getName()
Get 参数名称
|
Long |
getNeedReboot()
Get 修改参数后,是否需要重启数据库以使参数生效。可能的值包括:0-不需要重启;1-需要重启
|
String |
getParamType()
Get 参数类型
|
void |
setCurrentValue(String CurrentValue)
Set 参数当前值
|
void |
setDefault(String Default)
Set 参数默认值
|
void |
setDescription(String Description)
Set 参数描述
|
void |
setEnumValue(String[] EnumValue)
Set 参数的可选枚举值。如果为非枚举参数,则为空
注意:此字段可能返回 null,表示取不到有效值。
|
void |
setMax(String Max)
Set 参数允许的最大值
注意:此字段可能返回 null,表示取不到有效值。
|
void |
setMin(String Min)
Set 参数允许的最小值
注意:此字段可能返回 null,表示取不到有效值。
|
void |
setName(String Name)
Set 参数名称
|
void |
setNeedReboot(Long NeedReboot)
Set 修改参数后,是否需要重启数据库以使参数生效。可能的值包括:0-不需要重启;1-需要重启
|
void |
setParamType(String ParamType)
Set 参数类型
|
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
- 参数名称public String getParamType()
public void setParamType(String ParamType)
ParamType
- 参数类型public String getDefault()
public void setDefault(String Default)
Default
- 参数默认值public String getDescription()
public void setDescription(String Description)
Description
- 参数描述public String getCurrentValue()
public void setCurrentValue(String CurrentValue)
CurrentValue
- 参数当前值public Long getNeedReboot()
public void setNeedReboot(Long NeedReboot)
NeedReboot
- 修改参数后,是否需要重启数据库以使参数生效。可能的值包括:0-不需要重启;1-需要重启public String getMax()
public void setMax(String Max)
Max
- 参数允许的最大值
注意:此字段可能返回 null,表示取不到有效值。public String getMin()
public void setMin(String Min)
Min
- 参数允许的最小值
注意:此字段可能返回 null,表示取不到有效值。public String[] getEnumValue()
public void setEnumValue(String[] EnumValue)
EnumValue
- 参数的可选枚举值。如果为非枚举参数,则为空
注意:此字段可能返回 null,表示取不到有效值。Copyright © 2021. All rights reserved.