Remove lombok Delegate from PersistableList

Add final
Add setAll method
Remove Iterable interface
This commit is contained in:
chimp1984 2020-10-01 17:44:47 -05:00
parent 9190f17966
commit 074ed6753b
No known key found for this signature in database
GPG Key ID: 9801B4EC591F90E3

View File

@ -18,42 +18,69 @@
package bisq.common.proto.persistable;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.function.Consumer;
import java.util.stream.Stream;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Delegate;
@EqualsAndHashCode
public abstract class PersistableList<T extends PersistablePayload> implements PersistableEnvelope, Iterable<T> {
@Delegate(excludes = ExcludesDelegateMethods.class)
public abstract class PersistableList<T extends PersistablePayload> implements PersistableEnvelope {
@Getter
@Setter
private List<T> list;
private final List<T> list = createList();
protected List<T> createList() {
return new ArrayList<>();
}
public PersistableList() {
list = new ArrayList<>();
}
public PersistableList(List<T> list) {
this.list = list;
setAll(list);
}
public void setAll(Collection<T> collection) {
this.list.clear();
this.list.addAll(collection);
}
public boolean add(T item) {
if (!list.contains(item)) {
list.add(item);
return true;
}
return false;
}
public boolean remove(T tradable) {
return list.remove(tradable);
}
// this.stream() does not compile for unknown reasons, so add that manual delegate method
public Stream<T> stream() {
return list.stream();
}
private interface ExcludesDelegateMethods<T> {
Stream<T> stream();
public int size() {
return list.size();
}
@Override
public String toString() {
return "PersistableList{" +
"\n list=" + list +
"\n}";
public boolean contains(T thing) {
return list.contains(thing);
}
public boolean isEmpty() {
return list.isEmpty();
}
public void forEach(Consumer<? super T> action) {
list.forEach(action);
}
public void clear() {
list.clear();
}
}