I'm modelling some stuff for a bank but I needed to present updates and changes to the handwritten rules regularly. I don't know about you but wouldn't be nice if we could print the Predicate and not getting something like:
net.objectlab.kit.util.excel.ExcelWorkbookTest$$Lambda$1/868693306@13221655
Therefore, here comes the PrintablePredicate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.objectlab.kit.util.predicate; | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.function.Predicate; | |
import lombok.AllArgsConstructor; | |
import lombok.Data; | |
import net.objectlab.kit.util.StringUtil; | |
/** | |
* Example for the PrintablePredicate. | |
* Note that the example uses Lombok (highly recommended). | |
* @author Benoit Xhenseval | |
*/ | |
public class PrintablePredicateExample { | |
@Data | |
@AllArgsConstructor | |
private static class Asset { // Using Lombok, replaces Get/Set and Constructor | |
private String assetClass; | |
private String assetType; | |
private boolean active; | |
} | |
/** Predicate that tests for values Asset Class. */ | |
public static Predicate<Asset> hasAssetClass(String... assetClass) { | |
return new PrintablePredicate<>("AssetClass", | |
t -> StringUtil.equalsAnyIgnoreCase(t.getAssetClass(), assetClass), | |
assetClass); | |
} | |
/** Predicate that tests if asset is active. */ | |
public static Predicate<Asset> isActive() { | |
return new PrintablePredicate<>("Active", t -> t.isActive()); | |
} | |
private static List<Asset> buildUniverse() { | |
List<Asset> assets = new ArrayList<>(); | |
assets.add(new Asset("Equity", "Stock", true)); | |
assets.add(new Asset("Bond", "Government Bond", true)); | |
assets.add(new Asset("Bond", "Corporate Bond", true)); | |
assets.add(new Asset("Commodities", "Corn", true)); | |
assets.add(new Asset("Commodities", "Oil", false)); | |
return assets; | |
} | |
public static void main(String[] args) { | |
List<Asset> assets = buildUniverse(); | |
final Predicate<Asset> activeBondOrCommidities = hasAssetClass("Bond", "Commodities").and(isActive()); | |
final long count = assets.stream().filter(activeBondOrCommidities).count(); // 3 | |
System.out.println(activeBondOrCommidities + " Returns " + count); | |
// Prints "AssetClass in (Bond, Commodities) AND Active Returns 3" | |
} | |
} |