Package net.sourceforge.jnlp.config
Class BasicValueValidators
java.lang.Object
net.sourceforge.jnlp.config.BasicValueValidators
Provides
ValueValidator implementations for some common value types- See Also:
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ValueValidatorstatic ValueValidatorstatic ValueValidatorstatic ValueValidatorstatic ValueValidatorgetMultipleStringValidator(String[] singleValues, String[] comboValues) Returns aValueValidatorthat checks if an object is a string from one of the provided single option Strings or a combination from the provided combination Strings.static ValueValidatorgetRangedIntegerValidator(int low, int high) Returns aValueValidatorthat 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 ValueValidatorgetStringValidator(String[] validValues) Returns aValueValidatorthat checks if an object is a string from one of the provided Strings.static ValueValidatorstatic String[]splitCombination(String val) static String
-
Constructor Details
-
BasicValueValidators
public BasicValueValidators()
-
-
Method Details
-
splitCombination
-
getBooleanValidator
- Returns:
- a
ValueValidatorthat can be used to check if an object is a valid Boolean
-
getFilePathValidator
- Returns:
- a
ValueValidatorthat can be used to check if an object is a String containing a valid file path or not
-
getBrowserPathValidator
-
verifyFileOrCommand
-
getRangedIntegerValidator
Returns aValueValidatorthat checks if an object represents a valid integer (it is a Integer or Long or a String representation of one), within the given range. The values are inclusive.- Parameters:
low- the lowest valid valuehigh- the highest valid value- Returns:
- value validator for given range
-
getStringValidator
Returns aValueValidatorthat checks if an object is a string from one of the provided Strings.- Parameters:
validValues- an array of Strings which are considered valid- Returns:
- validator for given strings
-
getMultipleStringValidator
public static ValueValidator getMultipleStringValidator(String[] singleValues, String[] comboValues) Returns aValueValidatorthat checks if an object is a string from one of the provided single option Strings or a combination from the provided combination Strings.- Parameters:
singleValues- an array of Strings which are considered valid only by themselvescomboValues- an array of Strings which are considered valid in any combination with themselves- Returns:
- validator forgiven strings
-
getManifestAttributeCheckValidator
- Returns:
- a
ValueValidatorthat checks if an object is a string from the possible single or combination ManifestAttributeCheck values
-
getUrlValidator
- Returns:
- a
ValueValidatorthat checks if an object represents a valid url
-