Java String Suffix suffixLabel(String label, String tagSuffix)

Here you can find the source of suffixLabel(String label, String tagSuffix)

Description

suffix Label

License

Open Source License

Declaration

public static String suffixLabel(String label, String tagSuffix) 

Method Source Code

//package com.java2s;
/*/* w w w .  ja  v a 2  s.  c om*/
 *
 *  Copyright (c) 2012-2016 "FlockData LLC"
 *
 *  This file is part of FlockData.
 *
 *  FlockData is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  FlockData is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with FlockData.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    public static String suffixLabel(String label, String tagSuffix) {
        if (label.startsWith(":"))
            label = label.substring(1);

        if ("".equals(tagSuffix))
            return label;
        return label + tagSuffix;
    }
}

Related

  1. suffix(String string, final String suffix)
  2. suffix(String value, String prefix)
  3. suffix(String[] columns, String suffix)
  4. suffixClassName(String tableName)
  5. suffixes(char[] x, int[] suff)
  6. suffixName(String name)
  7. suffixNotNullStringOrDefault(String str, String defaultStr, String suffix)
  8. suffixWith(String receiver, char suffix, boolean ignoreCase)