Interface DataIdentificationDirCollector<E>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public interface DataIdentificationDirCollector<E>
Funktionelles Interface für eine Aktion, die je Containerdateien-Verzeichnis durchgeführt werden soll und dabei Objekte vom Typ E sammelt.
-
Method Summary
Modifier and Type Method Description void
run(DataIdentificationDir dataIdentificationDir, com.google.common.collect.ImmutableList.Builder<E> builder)
Führt die Aktion aus
-
Method Details
-
run
void run(DataIdentificationDir dataIdentificationDir, com.google.common.collect.ImmutableList.Builder<E> builder) throws java.lang.ExceptionFührt die Aktion aus- Parameters:
dataIdentificationDir
- Parameterbuilder
- Builder, der gefundene Objekte sammelt- Throws:
java.lang.Exception
- Beliebige Exception, die zum Terminieren des Durchlaufs führt.
-