Interface Condition<T>
-
- Type Parameters:
T
- The type of value that this condition operates on.
- All Superinterfaces:
java.io.Serializable
- All Known Subinterfaces:
Filter<T>
- All Known Implementing Classes:
AbstractFilter
,AlarmFilter
,BooleanCondition
,DateTimeCondition
,DisplayThenSourceCondition
,EnumCondition
,OrCondition
,PathCondition
,PathCondition.SubPathCondition
,PathCondition.WildcardSubPath
,PropertyCondition
,SourceOrDisplayCondition
,StringCondition
,StringEnumCondition
public interface Condition<T> extends java.io.Serializable
A condition returns true/false for whether a value passes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
passes(T value)
Returns whether the provided value passes the condition.
-
-
-
Method Detail
-
passes
boolean passes(T value)
Returns whether the provided value passes the condition.
-
-