Package com.db4o.typehandlers
Interface TypeHandlerPredicate
-
- All Known Implementing Classes:
SingleClassTypeHandlerPredicate
,SingleNamedClassTypeHandlerPredicate
public interface TypeHandlerPredicate
Predicate to be able to select if a specific TypeHandler is applicable for a specific Type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
match(ReflectClass classReflector)
return true if a TypeHandler is to be used for a specific Type
-
-
-
Method Detail
-
match
boolean match(ReflectClass classReflector)
return true if a TypeHandler is to be used for a specific Type- Parameters:
classReflector
- the Type passed by db4o that is to be tested by this predicate.- Returns:
- true if the TypeHandler is to be used for a specific Type.
-
-