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

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

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

import com.github.geekonjava.matcher.Matcher;

public class Contains implements Matcher {

  private final String matcherValue;

  public Contains(String matcherValue) {
    this.matcherValue = matcherValue;
  }

  @Override
  public boolean match(Object value) {
    return String.valueOf(value).contains(matcherValue);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy