jonesy
jonesy

Reputation: 656

Java 8 grouping into collection of objects

I would like to group a collection of Rental objects on the due date but I want to create a new RentalReport object for each group with the key as a predefined value (enum) and the group to be a property on that object. I have achieved this by fitering the collection on each criteria and creating a RentalReport object for each but I was wondering if this can be done using the groupingBy method of the Collectors class.

Is it possible to group by a predefined set of filters in java 8 so I could create a map where the key is the enum and the value is the collection of Rental objects. Then I could iterate over this map and generate the RentalReport objects.

I have created this demo but the real task involves multiple group by clauses so would be great if I can achieve this by grouping.

    import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
import org.joda.time.DateTime;

public class TestGrouping {

    enum RentalClassification {
        UNRESTRICTED, //No restriction restricted=false
        OVERDUE,      //todays date after due date.
        NEARLY_OVERDUE, // todays date after due date + 2 days
        NOT_OVERDUE
    }

    public static void main(String[] args) {

        class Rental {
            Integer rentalId;
            Integer productId;
            boolean restricted;
            DateTime dueDate;

            public Rental(Integer rentalId, Integer productId, boolean restricted, DateTime dueDate){
                this.rentalId = rentalId;
                this.productId = productId;
                this.restricted = restricted;
                this.dueDate = dueDate;
            }

            public Integer getRentalId() {
                return rentalId;
            }

            public void setRentalId(Integer rentalId) {
                this.rentalId = rentalId;
            }

            public Integer getProductId() {
                return productId;
            }

            public void setProductId(Integer productId) {
                this.productId = productId;
            }

            public boolean isRestricted() {
                return restricted;
            }

            public void setRestricted(boolean restricted) {
                this.restricted = restricted;
            }

            public DateTime getDueDate() {
                return dueDate;
            }

            public void setDueDate(DateTime dueDate) {
                this.dueDate = dueDate;
            }

            public String toString(){
                return "RentalId:"+this.rentalId+". ProductId:"+this.productId+". Due date:"+this.dueDate+". -";
            }
        }

        class RentalReport {

            RentalClassification classification;
            List<Rental> rentals;

            public RentalReport(RentalClassification classification, List<Rental> rentals) {
                this.classification = classification;
                this.rentals = rentals;
            }

            public RentalClassification getClassification() {
                return classification;
            }
            public void setClassification(RentalClassification classification) {
                this.classification = classification;
            }
            public List<Rental> getRentals() {
                return rentals;
            }
            public void setRentals(List<Rental> rentals) {
                this.rentals = rentals;
            }

            public String toString(){
                StringBuilder sb = new StringBuilder("Classification:"+this.classification.name()+". Rental Ids:");
                this.rentals.forEach(r -> sb.append(r.getRentalId()));
                return sb.toString();

            }

        }

        DateTime today = new DateTime();

        List<Rental> rentals = Arrays.asList(
                new Rental(1,100, true, today.plusDays(-10)),
                new Rental(2,101, false, today.plusDays(-10)),
                new Rental(3,102, true, today.plusDays(-4)),
                new Rental(4,103, true, today.plusDays(-4)),
                new Rental(5,104, true, today.plusDays(-4)),
                new Rental(6,105, true, today.plusDays(2)),
                new Rental(7,106, true, today.plusDays(2)),
                new Rental(8,107, true, today.plusDays(2)),
                new Rental(9,108, true, today.plusDays(4)),
                new Rental(10,109, true, today.plusDays(5))
                );


        List<RentalReport> rentalReports = new ArrayList<RentalReport>();

        List<Rental> unrestrictedRentals = rentals.stream()
                                           .filter(r -> !r.isRestricted())
                                           .collect(Collectors.toList());

        rentalReports.add(new RentalReport(RentalClassification.UNRESTRICTED, unrestrictedRentals));

        List<Rental> overdueRentals = rentals.stream()
                                      .filter(r -> r.isRestricted() && r.getDueDate().isBefore(new DateTime()))
                                      .collect(Collectors.toList());

        rentalReports.add(new RentalReport(RentalClassification.OVERDUE, overdueRentals));

        List<Rental> nearlyOverdueRentals = rentals.stream()
                                            .filter(r -> r.isRestricted() 
                                                    && r.getDueDate().isAfter(new DateTime())
                                                    && r.getDueDate().isBefore(new DateTime().plusDays(2)))
                                            .collect(Collectors.toList());

        rentalReports.add(new RentalReport(RentalClassification.NEARLY_OVERDUE, nearlyOverdueRentals));

        List<Rental> notOverdueRentals = rentals.stream()
                                        .filter(r -> r.isRestricted() && r.getDueDate().isAfter(new DateTime()))
                                        .collect(Collectors.toList());

        rentalReports.add(new RentalReport(RentalClassification.NOT_OVERDUE, notOverdueRentals));

        System.out.println("Rental Reports: "+rentalReports.toString());

    }
    }

Upvotes: 3

Views: 1449

Answers (4)

Thomas Fritsch
Thomas Fritsch

Reputation: 10127

There is obviously a one-to-one relation between your 4 enum RentalClassification constants and the 4 testing lambda expressions. Therefore it makes sense to integrate each lambda expression to the corresponding enumconstant.
Each enum constant will hold its testing lambda expression as a Predicate<Rental>. The enum type will have a boolean test(Rental) method doing the test with its own Predicate.
And while we are at it: Because of that test method we can add implements Predicate<Rental> to the enum type. This will turn out useful at the end.

enum RentalClassification implements Predicate<Rental> {

    UNRESTRICTED(    //No restriction restricted=false
            r -> !r.isRestricted()),
    OVERDUE(         //todays date after due date.
            r -> r.isRestricted()
            && r.getDueDate().isBefore(new DateTime())),
    NEARLY_OVERDUE( // todays date after due date + 2 days
            r -> r.isRestricted() 
            && r.getDueDate().isAfter(new DateTime())
            && r.getDueDate().isBefore(new DateTime().plusDays(2))),
    NOT_OVERDUE(
            r -> r.isRestricted()
            && r.getDueDate().isAfter(new DateTime()));

    private RentalClassification(Predicate<Rental> predicate) {
        this.predicate = predicate;
    }

    private Predicate<Rental> predicate;

    @Override
    public boolean test(Rental r) {
       return predicate.test(r);
    }
}

Using this enhanced enum type you can write a simple method for classifying a Rental. It will loop through all the RentalClassification constants until it finds one where the test succeeds:

static RentalClassification classify(Rental rental) {
   for (RentalClassification classification : RentalClassification.values()) {
       if (classification.test(rental))
           return classification;
   }
   return null;  // should not happen
}

Using this classifying method you can easily create the desired map:

Map<RentalClassification, List<Rental>> map =
        rentals.stream()
               .collect(Collectors.groupingBy(r -> classify(r)));

Alternatively, there is a slightly different approach possible. It uses the enum constants directly as filtering predicates to get the several lists:

List<Rental> unrestrictedRentals =
        rentals.stream()
               .filter(RentalClassification.UNRESTRICTED)
               .collect(Collectors.toList());
List<Rental> overdueRentals =
        rentals.stream()
               .filter(RentalClassification.OVERDUE)
               .collect(Collectors.toList());
// ...

Upvotes: 2

arthur
arthur

Reputation: 3325

Here is an approach:

List<RentalClassification,List<Rental>> = rentals
                                            .stream()
                                            .map(r -> getClassifiedRental(r))
                                            .collect(Collectors.groupingBy(SimpleEntry::getKey,Collectors.mapping(SimpleEntry::getValue,Collectors.toList())))

the whole trick is in the getClassifiedRental(Rental r) method:

SimpleEntry<RentalClassification,Rental> getClassifiedRental(Rental r){

    if(r -> !r.isRestricted())
        return new SimpleEntry<RentalClassification,Rental>(RentalClassification.UNRESTRICTED,r);

    if(r -> r.isRestricted() && r.getDueDate().isBefore(new DateTime()))

        return new SimpleEntry<RentalClassification,Rental>(RentalClassification.OVERDUE,r);

    if(r -> r.isRestricted() 
            && r.getDueDate().isAfter(new DateTime())
            && r.getDueDate().isBefore(new DateTime().plusDays(2)))
        return new SimpleEntry<RentalClassification,Rental>(RentalClassification.NEARLY_OVERDUE,r);

    if(r -> r.isRestricted() && r.getDueDate().isAfter(new DateTime()))
        return new SimpleEntry<RentalClassification,Rental>(RentalClassification.NOT_OVERDUE,r);

}

with SimpleEntry is a custom implementation of the Map.Entry interface (you'll have to write it yourself):

public class SimpleEntry implements Entry<RentalClassification, Rental> {
// implementation
}

having the getClassifiedRental(Rental r) helps you separating your rental classification routine for better e.g testing, refactoring e.g

Upvotes: 1

Bruce Hamilton
Bruce Hamilton

Reputation: 560

Here's one approach with groupingBy.

Function<Rental, RentalClassification> classifyRental = r -> {
    if (!r.isRestricted())
        return RentalClassification.UNRESTRICTED;
    else if (r.getDueDate().isBefore(new DateTime()))
        return RentalClassification.OVERDUE;
    else if (r.getDueDate().isAfter(new DateTime())
            && r.getDueDate().isBefore(new DateTime().plusDays(2)))
        return RentalClassification.NEARLY_OVERDUE;
    else
        return RentalClassification.NOT_OVERDUE;
};
Map<RentalClassification, List<Rental>> rentalReportMap = rentals.stream()
        .collect(groupingBy(classifyRental));
rentalReportMap
        .forEach((classification, rental) -> rentalReports.add(new RentalReport(classification, rental)));

Upvotes: 1

NickMarkham
NickMarkham

Reputation: 91

How about something like this:

rentals.stream().collect(Collectors.groupingBy(r -> {
    if (!r.isRestricted()) {
        return RentalClassification.UNRESTRICTED;
    }
    if (r.isRestricted() && r.getDueDate().isBefore(new DateTime())) {
        return RentalClassification.OVERDUE;
    }
    // and so on
}));

It might also be worth adding that lambda to Rental as a method RentalClassification getRentalClassification()

Upvotes: 1

Related Questions