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

com.payu.sdk.utils.TextUtils Maven / Gradle / Ivy

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