L'une des solutions consiste à créer un objet pour l'ensemble des champs que vous souhaitez regrouper. Cette classe peut être construite pour fournir des méthodes d'aide intéressantes.
Donc, avec votre classe originale complétée comme ceci :
public final class TaxLine {
private String title;
private BigDecimal rate;
private BigDecimal price;
public TaxLine(String title, BigDecimal rate, BigDecimal price) {
this.title = title;
this.rate = rate;
this.price = price;
}
public String getTitle() {
return this.title;
}
public BigDecimal getRate() {
return this.rate;
}
public BigDecimal getPrice() {
return this.price;
}
@Override
public String toString() {
return "TaxLine = title:\"" + this.title + "\", rate:" + this.rate + ", price:" + this.price;
}
}
Et la classe d'aide au regroupement est définie comme suit :
public final class TaxGroup {
private String title;
private BigDecimal rate;
public static TaxLine asLine(Entry<TaxGroup, BigDecimal> e) {
return new TaxLine(e.getKey().getTitle(), e.getKey().getRate(), e.getValue());
}
public TaxGroup(TaxLine taxLine) {
this.title = taxLine.getTitle();
this.rate = taxLine.getRate();
}
public String getTitle() {
return this.title;
}
public BigDecimal getRate() {
return this.rate;
}
@Override
public int hashCode() {
return this.title.hashCode() * 31 + this.rate.hashCode();
}
@Override
public boolean equals(Object obj) {
if (obj == null || getClass() != obj.getClass())
return false;
TaxGroup that = (TaxGroup) obj;
return (this.title.equals(that.title) && this.rate.equals(that.rate));
}
}
Votre code pour combiner les postes de ligne est le suivant, réparti sur plusieurs lignes pour faciliter la visualisation de ses différentes parties :
List<TaxLine> lines = Arrays.asList(
new TaxLine("New York Tax", new BigDecimal("0.20"), new BigDecimal("20.00")),
new TaxLine("New York Tax", new BigDecimal("0.20"), new BigDecimal("20.00")),
new TaxLine("County Tax" , new BigDecimal("0.10"), new BigDecimal("10.00"))
);
List<TaxLine> combined =
lines
.stream()
.collect(Collectors.groupingBy(TaxGroup::new,
Collectors.reducing(BigDecimal.ZERO,
TaxLine::getPrice,
BigDecimal::add)))
.entrySet()
.stream()
.map(TaxGroup::asLine)
.collect(Collectors.toList());
Vous pouvez ensuite imprimer les entrées/sorties :
System.out.println("Input:");
lines.stream().forEach(System.out::println);
System.out.println("Combined:");
combined.stream().forEach(System.out::println);
Pour produire ceci :
Input:
TaxLine = title:"New York Tax", rate:0.20, price:20.00
TaxLine = title:"New York Tax", rate:0.20, price:20.00
TaxLine = title:"County Tax", rate:0.10, price:10.00
Combined:
TaxLine = title:"New York Tax", rate:0.20, price:40.00
TaxLine = title:"County Tax", rate:0.10, price:10.00