Interface NeighborSetPredicate.Factory<O>
-
- Type Parameters:
O
- Input relation object type restriction
- All Known Implementing Classes:
AbstractPrecomputedNeighborhood.Factory
,ExtendedNeighborhood.Factory
,ExternalNeighborhood.Factory
,PrecomputedKNearestNeighborNeighborhood.Factory
- Enclosing interface:
- NeighborSetPredicate
public static interface NeighborSetPredicate.Factory<O>
Factory interface to produce instances.- Author:
- Erich Schubert
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypeInformation
getInputTypeRestriction()
Get the input type informationNeighborSetPredicate
instantiate(Database database, Relation<? extends O> relation)
Instantiation method.
-
-
-
Method Detail
-
instantiate
NeighborSetPredicate instantiate(Database database, Relation<? extends O> relation)
Instantiation method.- Parameters:
database
- Databaserelation
- Relation to instantiate for.- Returns:
- instance
-
getInputTypeRestriction
TypeInformation getInputTypeRestriction()
Get the input type information- Returns:
- input type
-
-