Android examples for java.util:List
merge two List
/**/*w w w . j a v a2 s . c om*/ * Copyright (c) 2011 Loganalysis team and contributors * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Raffael Schmid - initial API and implementation */ //package com.book2s; import java.util.ArrayList; import java.util.List; public class Main { public static void main(String[] argv) { List a = java.util.Arrays.asList("asdf", "book2s.com"); List b = java.util.Arrays.asList("asdf", "book2s.com"); System.out.println(merge(a, b)); } public static <T> List<T> merge(final List<T> a, final List<T> b) { final List<T> retVal = new ArrayList<T>(); retVal.addAll(a); retVal.addAll(b); return retVal; } }