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

com.github.geekonjava.matcher.custom.IsNull Maven / Gradle / Ivy

The newest version!
package com.github.geekonjava.matcher.custom;

import com.github.geekonjava.matcher.Matcher;

public class IsNull implements Matcher {

  @Override
  public boolean match(Object value) {
    return value == null;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy