Here you can find the source of isYearOnly(String input)
private static boolean isYearOnly(String input)
//package com.java2s; //License from project: Open Source License public class Main { private static boolean isYearOnly(String input) { return input.matches("[0-9]{4}"); }/* w w w . j a v a2s.c om*/ }