Package org.projectnessie.events.spi
Interface EventTypeFilter
- All Superinterfaces:
Predicate<org.projectnessie.events.api.EventType>
A filter for
EventTypes.-
Method Summary
Static MethodsModifier and TypeMethodDescriptionstatic EventTypeFilterall()Returns a filter that matches allEventTypes.static EventTypeFilternone()Returns a filter that matches noEventTypes.static EventTypeFilterof(Collection<org.projectnessie.events.api.EventType> eventTypes) Returns a filter that matches any of the givenEventTypes.static EventTypeFilterof(org.projectnessie.events.api.EventType eventType) Returns a filter that matches only the givenEventType.static EventTypeFilterof(org.projectnessie.events.api.EventType... eventTypes) Returns a filter that matches any of the givenEventTypes.
-
Method Details
-
all
Returns a filter that matches allEventTypes. -
none
Returns a filter that matches noEventTypes. -
of
Returns a filter that matches only the givenEventType. -
of
Returns a filter that matches any of the givenEventTypes. -
of
Returns a filter that matches any of the givenEventTypes.
-