Java String Pluralize pluralify(String term, int value)

Here you can find the source of pluralify(String term, int value)

Description

pluralify

License

Apache License

Declaration

public static String pluralify(String term, int value) 

Method Source Code

//package com.java2s;
/*/* www  .  java 2s  .c  o  m*/
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    public static String pluralify(String term, int value) {
        term = (Math.abs(value) == 1) ? term : term + "s";
        return " " + term;
    }
}

Related

  1. plural(String type)
  2. plural(String word)
  3. plural(String word, Number cardinality)
  4. plural(StringBuffer buffer, int i, String s1, String s2)
  5. pluralForm(final String string, final int number)
  6. pluralise(int count, String singular, String plural)
  7. pluralise(int num, String word)
  8. pluralise(String name)
  9. pluralise(String str)