com.kenshoo.pl.entity.spi.helpers.CommandsFieldMatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of persistence-layer Show documentation
Show all versions of persistence-layer Show documentation
A Java persistence layer based on JOOQ for high performance and business flow support.
package com.kenshoo.pl.entity.spi.helpers;
import com.kenshoo.pl.entity.EntityChange;
import com.kenshoo.pl.entity.EntityField;
import com.kenshoo.pl.entity.EntityType;
import java.util.Arrays;
import java.util.Collection;
public class CommandsFieldMatcher {
@SafeVarargs
public static > boolean isAnyFieldContainedInAnyCommand(final Collection extends EntityChange> commands, final EntityField ... fields) {
return commands.stream().anyMatch(cmd -> Arrays.stream(fields).anyMatch(field -> cmd.isFieldChanged(field)));
}
@SafeVarargs
public static > boolean isAnyFieldMissingInAnyCommand(final Collection extends EntityChange> commands, final EntityField ... fields) {
return commands.stream().anyMatch(cmd -> Arrays.stream(fields).anyMatch(field -> !cmd.isFieldChanged(field)));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy