Convenience class for constructing org.springframework.data.jpa.domain.Specification
instances
Specification<MyEntity> someSpec = Specification.where(MoreSpecifications.valueIn(root -> root.get("someThing"), someCollection))
.and(MoreSpecifications.startsWith(root -> root.get("someField"), "foo"))
.or(MoreSpecifications.like(root -> root.get("someOtherField"), "bar"));