Here you can find the source of plural(String strSingle, String strPlural, int amount)
private static String plural(String strSingle, String strPlural, int amount)
//package com.java2s; //License from project: Open Source License public class Main { private static String plural(String strSingle, String strPlural, int amount) { return String.format(amount == 1 ? strSingle : strPlural, amount); }//from w w w.j av a 2 s .c o m }