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

com.deque.axe.android.utils.AxeTextUtils Maven / Gradle / Ivy

The newest version!
package com.deque.axe.android.utils;

public class AxeTextUtils {

  public static boolean isNullOrEmpty(String string) {
    return (string == null) || (string.trim().length() <= 0);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy