Package br.com.six2six.fixturefactory.function

Examples of br.com.six2six.fixturefactory.function.RegexFunction


  public Function randomDate(String startDate, String endDate, DateFormat format) {
    return new DateTimeFunction(toCalendar(startDate, format), toCalendar(endDate, format));
  }

  public Function regex(String regex) {
    return new RegexFunction(regex);
  }
View Full Code Here


  public Function randomDate(String startDate, String endDate, DateFormat format) {
    return new DateTimeFunction(toCalendar(startDate, format), toCalendar(endDate, format));
  }

  public Function regex(String regex) {
    return new RegexFunction(regex);
  }
View Full Code Here

TOP

Related Classes of br.com.six2six.fixturefactory.function.RegexFunction

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.