com.deque.axe.android.utils.AxeTextUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axe-devtools-android-core Show documentation
Show all versions of axe-devtools-android-core Show documentation
The Axe Devtools Android Core Library
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