Java List Create createReleasesString(List tagsList)

Here you can find the source of createReleasesString(List tagsList)

Description

create Releases String

License

Open Source License

Declaration

private static String createReleasesString(List<String> tagsList) 

Method Source Code

//package com.java2s;
/*//from ww  w  .  j  av  a 2s .co  m
 * The MIT License (MIT)
 *
 * Copyright (c) 2016 Alcemir R. Santos
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
 * associated documentation files (the "Software"), to deal in the Software without restriction,
 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all copies or
 * substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
 * NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

import java.util.List;

public class Main {
    private static String createReleasesString(List<String> tagsList) {
        if (tagsList.size() == 1) {
            return tagsList.remove(0);
        } else {
            return tagsList.remove(0) + ", " + createReleasesString(tagsList);
        }
    }
}

Related

  1. createPrimaryKeyList(String primaryKeyStr)
  2. createPrimaryKeysQuery(String tableName, List primaryKeys)
  3. createQueryLogMessage(String query, List parameterValues)
  4. createQueryString(String query, List params)
  5. createRegion(String string, List regionList, int startIndex, int endIndex)
  6. createResponse(String inputLabel, List imageLabels)
  7. createSingletonList(T element)
  8. createSourceExtensionList(Map sourceExtensionMap)
  9. createSpaceDelimitedString(List stringList)

  10. HOME | Copyright © www.java2s.com 2016