Package com.wagnerandade.coollection.matcher.custom

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


  public static Matcher contains(String value) {
    return new Contains(value);
  }
 
  public static Matcher eqIgnoreCase(String value) {
    return new EqualsIgnoreCase(value);
  }
View Full Code Here

TOP

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

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.