Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static boolean isAddressDetail(String str) {
if (str != null && (!str.trim().equals("")) && (str.length() > 3) && (str.length() < 21)) {
return true;
} else {
return false;
}
}
}