Java List Trim trimListValues(List original)

Here you can find the source of trimListValues(List original)

Description

Trims all values in a list of strings

License

Open Source License

Parameter

Parameter Description
original a parameter

Declaration

public static List<String> trimListValues(List<String> original) 

Method Source Code

//package com.java2s;
/*//from   w  w  w .  j  a v  a  2 s . com
 *  Copyright (c) 2014 Michael Berkovich, http://tr8nhub.com All rights reserved.
 *
 *  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.ArrayList;

import java.util.List;

public class Main {
    /**
     * Trims all values in a list of strings
     * @param original
     * @return
     */
    public static List<String> trimListValues(List<String> original) {
        List<String> trimmedList = new ArrayList<String>();
        for (int i = 0; i < original.size(); i++)
            trimmedList.add((original.get(i).toString()).trim());
        return trimmedList;
    }
}

Related

  1. trimIfLastIndex(List suggestedList, String suggestedWords, int i)
  2. trimKeyFormat(String s3KeyFormat, List disallowedKeys)
  3. trimLeadingWhitespaces(List lines)
  4. trimList(List list)
  5. trimList(List source)
  6. trimSequence(int m, List sequence)
  7. trimStringLineList(List lines)
  8. trimStrings(List list)
  9. trimStringToNewList(List list, Boolean isLower)