Package com.solibri.smc.api.settings
Class StringSetting
- java.lang.Object
-
- com.solibri.smc.api.settings.StringSetting
-
-
Constructor Summary
Constructors Constructor Description StringSetting()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()Returns the current value of the setting.Optional<String>invalidReason(String value)The default is that any possible string is valid.booleanisMultiLine()Returns whether this string setting is multilined or not.voidsetValue(String value)Sets the value of the setting.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.solibri.smc.api.settings.Setting
getDefaultValue, getDescription, getName, getUniqueId
-
-
-
-
Method Detail
-
getValue
public String getValue()
Description copied from interface:SettingReturns the current value of the setting. This returns the new value of the setting immediately after it has been changed, but note that it is up to the users of settings to decide if the new value takes effect immediately or after a restart.
-
setValue
public void setValue(String value)
Description copied from interface:SettingSets the value of the setting.
-
invalidReason
public Optional<String> invalidReason(String value)
The default is that any possible string is valid.- Specified by:
invalidReasonin interfaceSetting<String>- Parameters:
value- the value to be checked for validity- Returns:
- true if the given value is valid, false otherwise
-
isMultiLine
public boolean isMultiLine()
Returns whether this string setting is multilined or not. Usually the setting is a single line setting, but sometimes free text input is needed and multiline string setting works better.- Returns:
- true if the setting is a multiline setting
- Since:
- 9.10.8
-
-