package com.google.common.collect; /* * #%L * Matos * $Id:$ * $HeadURL:$ * %% * Copyright (C) 2010 - 2014 Orange SA * %% * 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. * #L% */ public final class Lists { // Constructors private Lists(){ } // Methods public static <F, T>java.util.List<T> transform(java.util.List<F> arg1, com.google.common.base.Function<? super F, ? extends T> arg2){ return (java.util.List) null; } public static <E>java.util.List<E> asList(@javax.annotation.Nullable E arg1, E [] arg2){ return (java.util.List) null; } public static <E>java.util.List<E> asList(@javax.annotation.Nullable E arg1, @javax.annotation.Nullable E arg2, E [] arg3){ return (java.util.List) null; } public static <E>java.util.ArrayList<E> newArrayList(){ return (java.util.ArrayList) null; } public static <E>java.util.ArrayList<E> newArrayList(E [] arg1){ return (java.util.ArrayList) null; } public static <E>java.util.ArrayList<E> newArrayList(java.lang.Iterable<? extends E> arg1){ return (java.util.ArrayList) null; } public static <E>java.util.ArrayList<E> newArrayList(java.util.Iterator<? extends E> arg1){ return (java.util.ArrayList) null; } public static <T>java.util.List<java.util.List<T>> partition(java.util.List<T> arg1, int arg2){ return (java.util.List) null; } public static <E>java.util.ArrayList<E> newArrayListWithExpectedSize(int arg1){ return (java.util.ArrayList) null; } public static <E>java.util.ArrayList<E> newArrayListWithCapacity(int arg1){ return (java.util.ArrayList) null; } public static <E>java.util.LinkedList<E> newLinkedList(){ return (java.util.LinkedList) null; } public static <E>java.util.LinkedList<E> newLinkedList(java.lang.Iterable<? extends E> arg1){ return (java.util.LinkedList) null; } }