Java List Print printListStrings(List list, String listDescription)

Here you can find the source of printListStrings(List list, String listDescription)

Description

print List Strings

License

Apache License

Declaration

public static String printListStrings(List<String> list, String listDescription) 

Method Source Code

//package com.java2s;
/*  //  www .jav a 2s  .c  o  m
    
Copyright [2013-2014] eBay Software Foundation
    
Licensed 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.
    
*/

import java.util.List;

public class Main {
    public static String printListStrings(List<String> list, String listDescription) {

        StringBuilder sb = new StringBuilder();
        sb.append("\nLIST_START of " + listDescription + " count:" + list.size()).append("\n[\n");

        for (String s : list) {

            sb.append(s).append("\n");
        }

        sb.append("]\nLIST_END of " + listDescription + " count:" + list.size()).append("\n");

        return sb.toString();
    }
}

Related

  1. printList(List> list)
  2. printList(List truthTableHeader)
  3. printList(List list)
  4. printList(List list)
  5. printListPair(List list)
  6. printListV(List l)
  7. printListWithDelimiter(Collection list, String delimiter)
  8. println(List text)
  9. printlnList(List list)