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

com.mastercard.developer.utils.StringUtils Maven / Gradle / Ivy

There is a newer version: 1.8.3
Show newest version
package com.mastercard.developer.utils;

public class StringUtils {

    private StringUtils() {
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy