![JAR search and dependency download from the Maven repository](/logo.png)
com.payu.sdk.utils.TextUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
A fresh implementation of the PayU API Client for Android
The newest version!
package com.payu.sdk.utils;
public final class TextUtils {
private TextUtils() {
}
public static boolean isNullOrEmpty(String string) {
return string == null || string.length() == 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy