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

org.knowm.xchange.exx.utils.RestCommonUtil Maven / Gradle / Ivy

There is a newer version: 4.3.17.1
Show newest version
package org.knowm.xchange.exx.utils;

/**
 * 常用工具类
 *
 * @author Lynn Li
 */
public class RestCommonUtil {
  /** 工具类,封闭构造器 */
  private RestCommonUtil() {}

  /**
   * 返回字符串是否为空
   *
   * @param str
   * @return
   */
  public static boolean isEmpty(String str) {
    return str == null || "".equals(str) || "".equals(str.trim());
  }

  /**
   * 返回字符串是否非空
   *
   * @param str
   * @return
   */
  public static boolean isNotEmpty(String str) {
    return !isEmpty(str);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy