Java String to List convertToList(String str)

Here you can find the source of convertToList(String str)

Description

Create an ArrayList and add the str value to its 0 index and return it.

License

Open Source License

Parameter

Parameter Description
str a String value

Return

an Object of List<String>

Declaration

public static List<String> convertToList(String str) 

Method Source Code

//package com.java2s;
/*//from w  ww .j  av a  2 s .c om
    
Copyright (C) 2006-2013  Board of Regents of the University of Wisconsin System (Univ. of Wisconsin-Madison, Trace R&D Center).
    
This piece of the software package, developed by the Trace Center - University of Wisconsin is released to the public domain with only the following restrictions:
    
1) That the following acknowledgement be included in the source code and documentation for the program or package that use this code:
    
"Parts of this program were based on software developed by the Trace Center, University of Wisconsin-Madison under funding from NIDRR / US Dept of Education."
    
2) That this program not be modified unless it is plainly marked as modified from the original distributed by Trace.
    
NOTE: This license agreement does not cover third-party components bundled with this software, which have their own license agreement with them. A list of included third-party components with references to their license files is provided with this distribution. 
    
This software was developed under funding from NIDRR / US Dept of Education under grant # H133E030012.
    
THIS SOFTWARE IS EXPERIMENTAL/DEMONSTRATION IN NATURE. 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 OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
    
*/

import java.util.ArrayList;

import java.util.List;

public class Main {
    /**
     * Create an ArrayList and add the str value to its 0 index and return it.
     * 
     * @param str a String value
     * 
     * @return an Object of List&lt;String&gt;
     */
    public static List<String> convertToList(String str) {

        if (str == null)
            return null;

        List<String> strList = new ArrayList<String>();

        strList.add(str);

        return strList;
    }
}

Related

  1. convertStringToList(String string, String delimiter, boolean trim)
  2. convertStringToList(String value, String delimiter)
  3. convertTextToStringList(String tagText)
  4. convertTextToStringList(String text)
  5. convertToList(String inputString)
  6. convertToList(String string, String delim)
  7. convertToList(String vars)
  8. convertToList(String[] array)
  9. stringsToList(final String[] src)