2015-11-03 12:00:44 -08:00
|
|
|
|
// patterns/doubledispatch/Aluminum.java
|
2015-11-14 16:18:05 -08:00
|
|
|
|
// <20>2016 MindView LLC: see Copyright.txt
|
2015-11-03 12:00:44 -08:00
|
|
|
|
// Aluminum for double dispatching.
|
|
|
|
|
package patterns.doubledispatch;
|
|
|
|
|
import patterns.trash.*;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
|
|
public class Aluminum extends patterns.trash.Aluminum
|
|
|
|
|
implements TypedBinMember {
|
|
|
|
|
public Aluminum(double wt) { super(wt); }
|
|
|
|
|
@Override
|
|
|
|
|
public boolean addToBin(List<TypedBin> tbins) {
|
|
|
|
|
return tbins.stream().anyMatch(tb -> tb.add(this));
|
|
|
|
|
}
|
|
|
|
|
}
|