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,- AlarmCondition,- BasicPropertyCondition,- EventScriptCondition,- PathCondition,- PropertySetFilter,- TagPermissionCondition,- TagSearchFilter
 
 public interface Condition<T> extends java.io.SerializableA condition returns true/false for whether a value passes.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanpasses(T value)Returns whether the provided value passes the condition.
 
- 
- 
- 
Method Detail- 
passesboolean passes(T value) Returns whether the provided value passes the condition.
 
- 
 
-