
aQute.lib.collections.ExtList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz.aQute.bnd.runtime.snapshot Show documentation
Show all versions of biz.aQute.bnd.runtime.snapshot Show documentation
biz.aQute.bnd.runtime.snapshot
The newest version!
package aQute.lib.collections;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.regex.Pattern;
import java.util.stream.Collector;
import aQute.lib.strings.Strings;
public class ExtList extends ArrayList {
private static final long serialVersionUID = 1L;
@SafeVarargs
public ExtList(T... ts) {
super(ts.length);
for (T t : ts) {
add(t);
}
}
public ExtList() {
super();
}
public ExtList(int size) {
super(size);
}
public ExtList(Collection extends T> col) {
super(col);
}
public ExtList(Iterable extends T> col) {
for (T t : col)
add(t);
}
public static ExtList from(String s) {
return Strings.splitAsStream(s)
.collect(collector());
}
public static ExtList from(String s, String delimeter) {
return Pattern.compile(delimeter)
.splitAsStream(s)
.collect(collector());
}
private static Collector> collector() {
return Collector.of(ExtList::new, List::add, (left, right) -> {
left.addAll(right);
return left;
});
}
public String join() {
return Strings.join(this);
}
public String join(String del) {
return Strings.join(del, this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy