Java Collection Create stringToCollection(String string)

Here you can find the source of stringToCollection(String string)

Description

Returns a comma-delimitted list of Strings as a Collection.

License

Open Source License

Return

a Collection representing the String.

Declaration

public static Collection<String> stringToCollection(String string) 

Method Source Code

//package com.java2s;
/**/* ww w  .j a v  a  2 s.  c o m*/
 * $Revision$
 * $Date$
 *
 * Copyright (C) 2004-2008 Jive Software. All rights reserved.
 *
 * 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.ArrayList;
import java.util.Collection;
import java.util.Collections;

import java.util.StringTokenizer;

public class Main {
    /**
     * Returns a comma-delimitted list of Strings as a Collection.
     *
     * @return a Collection representing the String.
     */
    public static Collection<String> stringToCollection(String string) {
        if (string == null || string.trim().length() == 0) {
            return Collections.emptyList();
        }
        Collection<String> collection = new ArrayList<>();
        StringTokenizer tokens = new StringTokenizer(string, ",");
        while (tokens.hasMoreTokens()) {
            collection.add(tokens.nextToken().trim());
        }
        return collection;
    }
}

Related

  1. createParameterizedWhereClause(Collection columns)
  2. createStringCollection(Class clazz, String... elements)
  3. createStringFromCollection(Collection svcInterfaces)
  4. createTextFromList(Collection list)
  5. createUniqueName(String baseName, Collection names)
  6. stringToCollection(String string)
  7. stringToCollection(String string, String delim)
  8. toCollection(C c, E... elements)
  9. toCollection(Class cls, Iterable iterable)