Java List Create createPrimaryKeyList(String primaryKeyStr)

Here you can find the source of createPrimaryKeyList(String primaryKeyStr)

Description

create Primary Key List

License

Open Source License

Declaration

private static List<String> createPrimaryKeyList(String primaryKeyStr) 

Method Source Code

//package com.java2s;
/*//w  ww . ja v a  2s.c om
 * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
 *
 * WSO2 Inc. licenses this file to you 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.Arrays;

import java.util.List;

public class Main {
    private static List<String> createPrimaryKeyList(String primaryKeyStr) {
        return new ArrayList<>(Arrays.asList(primaryKeyStr.trim().split("\\s*,\\s*")));
    }
}

Related

  1. createOrderedQuery(String attributeName, List ids)
  2. createOrgAttributeList()
  3. createOrGrow(List list, int minCapacity)
  4. createOutputTuple(List> tuples)
  5. createPostBody(final List required)
  6. createPrimaryKeysQuery(String tableName, List primaryKeys)
  7. createQueryLogMessage(String query, List parameterValues)
  8. createQueryString(String query, List params)
  9. createRegion(String string, List regionList, int startIndex, int endIndex)

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