Package com.embabel.agent.filter
See: Description
-
Object Summary Object Description InMemoryPropertyFilter In-memory property filter evaluation for PropertyFilter expressions against key-value maps. Companion -
Interface Summary Interface Description ObjectFilter Non-sealed extension point within the PropertyFilter sealed hierarchy. PropertyFilter Filter expression for property-based filtering on key-value maps. -
Class Summary Class Description Eq Equals: propertieskey == value Ne Not equals: propertieskey ! Gt Greater than: propertieskey value Gte Greater than or equal: propertieskey>= value Lt Less than: propertieskey< value Lte Less than or equal: propertieskey<= value In In list: propertieskey in values Nin Not in list: propertieskey not in values Contains Contains substring: propertieskey.toString(). ContainsIgnoreCase Contains substring (case-insensitive): propertieskey.toString().lowercase().contains(value. EqIgnoreCase Equals (case-insensitive): propertieskey.toString().lowercase() == value. StartsWith Starts with prefix: propertieskey.toString(). EndsWith Ends with suffix: propertieskey.toString(). Like Regex pattern match: propertieskey.toString(). And Logical AND: all filters must match Or Logical OR: at least one filter must match Not Logical NOT: filter must not match