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

com.sixestates.utils.StringUtils Maven / Gradle / Ivy

Go to download

A Java SDK for communicating with the 6Estates Intelligent Document Processing(IDP) Platform

There is a newer version: 8.2.3
Show newest version
package com.sixestates.utils;

/**
 * @author kechen, 06/08/24.
 */
public class StringUtils {
    public static Boolean isNotEmpty(String str){
        if (str == null || str.length() == 0) {
            return false;
        }
        return true;
    }

    public static boolean equals(String str1, String str2) {
        return str1 == null ? str2 == null : str1.equals(str2);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy