com.mastercard.developer.utils.StringUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-encryption Show documentation
Show all versions of client-encryption Show documentation
Library for Mastercard API compliant payload encryption/decryption
package com.mastercard.developer.utils;
public class StringUtils {
private StringUtils() {
}
public static boolean isNullOrEmpty(String str) {
return null == str || str.length() == 0;
}
}