Here you can find the source of minLength(String field, Integer from)
public static Boolean minLength(String field, Integer from)
//package com.java2s; //License from project: Creative Commons License public class Main { public static Boolean minLength(String field, Integer from) { return field.length() >= from; }//from w w w . j a v a2s. c om }