Package com.saperion.util.validator
Class BlankValidation
- java.lang.Object
- 
- com.saperion.util.validator.BlankValidation
 
- 
- All Implemented Interfaces:
- Validation
 
 public class BlankValidation extends java.lang.Object implements Validation The Class BlankValidation. Validation to check if input string is whitespace, empty ("") or null.
- 
- 
Constructor SummaryConstructors Constructor Description BlankValidation()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanvalidate(java.lang.String input)Validate the given input string.
 
- 
- 
- 
Method Detail- 
validatepublic boolean validate(java.lang.String input) Validate the given input string.- Specified by:
- validatein interface- Validation
- Parameters:
- input- the input string to validate
- Returns:
- true if input string is whitespace, empty ("") or null
- See Also:
- Validation.validate(java.lang.String)
 
 
- 
 
-