cayenne
cayenne copied to clipboard
CAY-2807 entity property disambiguate method parameters
API redesign in EntityProperty, CollectionProperty, MapProperty
Deprecated this methods:
Expression inId(Collection<Object> ids) Expression inId(Object firstId, Object... moreIds)
Expression ninId(Collection<Object> ids) Expression ninId(Object firstId, Object... moreIds)
in favor of this:
Expression idsInCollection(Collection<?> ids) Expression idsIn(Object... ids)
Expression idsNotInCollection(Collection<?> ids) Expression idsNotIn(Object... ids)