I want to set a minimum value for my NodeDialog using SettingsModelInteger Class but I can only set the default value to “0”. I want to prevent the users from setting the value below “0”. How will I make the minimum value to “0”.
You can use SettingsModelIntegerBounded instead, which allows to specify upper and lower bounds (just set the upper bound to Integer.MAX_VALUE if you do not care about that).