Java List Combine combine(final List list, final List list2)

Here you can find the source of combine(final List list, final List list2)

Description

combine

License

Apache License

Declaration

public static <T> List<T> combine(final List<T> list, final List<T> list2) 

Method Source Code


//package com.java2s;
/*/*from  www  . j a va  2 s .  c om*/
 *  Licensed to the Apache Software Foundation (ASF) under one
 *  or more contributor license agreements.  See the NOTICE file
 *  distributed with this work for additional information
 *  regarding copyright ownership.  The ASF 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.List;

public class Main {
    public static <T> List<T> combine(final List<T> list, final List<T> list2) {
        final List<T> combinedList = new ArrayList<T>();
        combinedList.addAll(list);
        combinedList.addAll(list2);
        return combinedList;
    }
}

Related

  1. combine(final List r, final char sep)
  2. combine(final List dataChunks)
  3. combine(int sign, List exponentBits, List mantissaBits)
  4. combine(List r, char sep)
  5. combine(List> lists)
  6. combine(List commands, int startAt, int endAt)