Package com.wagnerandade.coollection.matcher.custom

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


  public static Matcher not(Matcher matcher) {
    return new Not(matcher);
  }
 
  public static Matcher greaterThan(Number value) {
    return new GreaterThan(value);
  }
View Full Code Here

TOP

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

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.