com.github.ahant.validator.util.CommonUtil.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of field-validator Show documentation
Show all versions of field-validator Show documentation
Annotation based input field validator.
The newest version!
package com.github.ahant.validator.util
/**
* Created by ahant on 7/23/2016.
*/
internal object CommonUtil {
fun isBlank(input: String?): Boolean {
return input != null && input.isEmpty()
}
fun isNotBlank(input: String?): Boolean {
return !isBlank(input)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy