Package com.wagnerandade.coollection.matcher.custom

Examples of com.wagnerandade.coollection.matcher.custom.Not


  public static Matcher eqIgnoreCase(String value) {
    return new EqualsIgnoreCase(value);
  }
 
  public static Matcher not(Matcher matcher) {
    return new Not(matcher);
  }
View Full Code Here

TOP

Related Classes of com.wagnerandade.coollection.matcher.custom.Not

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.