All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testifyproject.bytebuddy.utility.CompoundList Maven / Gradle / Ivy

The newest version!
package org.testifyproject.bytebuddy.utility;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

/**
 * Creates a list representation of two lists as a single, compound list.
 */
public class CompoundList {

    /**
     * A compund list cannot be created.
     */
    private CompoundList() {
        throw new UnsupportedOperationException("Cannot create a compound list");
    }

    /**
     * Creates a list of a single element and another list.
     *
     * @param left  The left element.
     * @param right The right list.
     * @param    The type of the list's elements.
     * @return A compound list representing the element and the list.
     */
    public static  List of(S left, List right) {
        return of(Collections.singletonList(left), right);
    }

    /**
     * Creates a list of a list and an element.
     *
     * @param left  The left left.
     * @param right The right element.
     * @param    The type of the list's elements.
     * @return A compound list representing the element and the list.
     */
    public static  List of(List left, S right) {
        return of(left, Collections.singletonList(right));
    }

    /**
     * Creates a list of a left and right list.
     *
     * @param left  The left list.
     * @param right The right list.
     * @param    The type of the list's elements.
     * @return A compound list representing the element and the list.
     */
    public static  List of(List left, List right) {
        List list = new ArrayList(left.size() + right.size());
        list.addAll(left);
        list.addAll(right);
        return list;
    }
}