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

com.litongjava.table.utils.ObjectUtils Maven / Gradle / Ivy

The newest version!
package com.litongjava.table.utils;

import java.util.Objects;

public class ObjectUtils {

  public static boolean isEmpty(Object obj) {
    if (Objects.toString(obj, "").equals("")) {
      return true;
    } else {
      return false;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy