net.fortuna.ical4j.data.ServiceLoaderComponentFactorySupplier Maven / Gradle / Ivy
package net.fortuna.ical4j.data;
import net.fortuna.ical4j.model.ComponentFactory;
import java.util.ArrayList;
import java.util.List;
import java.util.ServiceLoader;
import java.util.function.Supplier;
public class ServiceLoaderComponentFactorySupplier implements Supplier>> {
@Override
public List> get() {
final ServiceLoader serviceLoader = ServiceLoader.load(ComponentFactory.class,
ComponentFactory.class.getClassLoader());
List> factories = new ArrayList<>();
serviceLoader.forEach(factories::add);
return factories;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy