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

org.simpleflatmapper.util.ListCollector Maven / Gradle / Ivy

Go to download

Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.

There is a newer version: 9.0.2
Show newest version
package org.simpleflatmapper.util;

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

/**
 * Implementation of {@link Consumer} that collect all the value into a list.

* Equivalent to a {@link java.util.stream.Collectors#toList()}. * @param the type of the callback argument */ public final class ListCollector implements Consumer { private final List list = new ArrayList(); @Override public void accept(final T t) { list.add(t); } /** * * @return the collected objects */ public List getList() { return list; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy