Blank
Testing for blank
A blank String is a String that is meets at least one of the following criteria:
null
zero length
only contains whitespace
isBlank
The isBlank returns true if ANY ONE of the above criteria holds true
isNotBlank
The isNotBlank returns true only if ALL of the above criteria are invalid
Last updated