Uses of Interface
net.sourceforge.jnlp.config.ValueValidator
-
Packages that use ValueValidator Package Description net.sourceforge.jnlp.config -
-
Uses of ValueValidator in net.sourceforge.jnlp.config
Classes in net.sourceforge.jnlp.config that implement ValueValidator Modifier and Type Class Description static class
BasicValueValidators.RustCpValidator
Methods in net.sourceforge.jnlp.config that return ValueValidator Modifier and Type Method Description static ValueValidator
BasicValueValidators. getBooleanValidator()
static ValueValidator
BasicValueValidators. getBrowserPathValidator()
static ValueValidator
BasicValueValidators. getFilePathValidator()
static ValueValidator
BasicValueValidators. getManifestAttributeCheckValidator()
static ValueValidator
BasicValueValidators. getMultipleStringValidator(java.lang.String[] singleValues, java.lang.String[] comboValues)
Returns aValueValidator
that checks if an object is a string from one of the provided single option Strings or a combination from the provided combination Strings.static ValueValidator
BasicValueValidators. getRangedIntegerValidator(int low, int high)
Returns aValueValidator
that checks if an object represents a valid integer (it is a Integer or Long or a String representation of one), within the given range.static ValueValidator
BasicValueValidators. getStringValidator(java.lang.String[] validValues)
Returns aValueValidator
that checks if an object is a string from one of the provided Strings.static ValueValidator
BasicValueValidators. getUrlValidator()
ValueValidator
Setting. getValidator()
Constructors in net.sourceforge.jnlp.config with parameters of type ValueValidator Constructor Description Setting(java.lang.String name, java.lang.String description, boolean locked, ValueValidator validator, T defaultValue, T value, java.lang.String source)
Creates a new Settings object
-