Here you can find the source of plural(int amount)
Parameter | Description |
---|---|
amount | The amount. |
public static String plural(int amount)
//package com.java2s; //License from project: Open Source License public class Main { /**//from ww w . j a v a 2 s. c o m * Is it second, or seconds? * * @param amount The amount. * @return The plural. */ public static String plural(int amount) { return amount == 1 ? " " : "s "; } }