All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ahant.validator.util.CommonUtil.kt Maven / Gradle / Ivy

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