Example usage for org.apache.commons.collections15 ListUtils sum

List of usage examples for org.apache.commons.collections15 ListUtils sum

Introduction

In this page you can find the example usage for org.apache.commons.collections15 ListUtils sum.

Prototype

public static <E> List<E> sum(final List<? extends E> list1, final List<? extends E> list2) 

Source Link

Document

Returns the sum of the given lists.

Usage

From source file:de.iteratec.iteraplan.elasticeam.derived.AddReplaceList.java

final List<N> get() {
    return Lists.transform(ListUtils.sum(rawGet(), getAdditionalElements()), this.replacer);
}