Package org.kie.api.runtime
Class ClassObjectFilter
- java.lang.Object
-
- org.kie.api.runtime.ClassObjectFilter
-
- All Implemented Interfaces:
ObjectFilter
public class ClassObjectFilter extends java.lang.Object implements ObjectFilter
Filters objects by class, only accepting objects of the class specified in the constructor
-
-
Constructor Summary
Constructors Constructor Description ClassObjectFilter(java.lang.Class<?> clazz)
The Allowed Class type
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
accept(java.lang.Object object)
java.lang.Class
getFilteredClass()
-
-
-
Method Detail
-
accept
public boolean accept(java.lang.Object object)
- Specified by:
accept
in interfaceObjectFilter
- Returns:
- true if the Iterator accepts the given object according to its class.
-
getFilteredClass
public java.lang.Class getFilteredClass()
-
-