Interface WeightedNeighborSetPredicate.Factory<O>
-
- Type Parameters:
O- Input relation object type restriction
- All Known Implementing Classes:
LinearWeightedExtendedNeighborhood.Factory,UnweightedNeighborhoodAdapter.Factory
- Enclosing interface:
- WeightedNeighborSetPredicate
public static interface WeightedNeighborSetPredicate.Factory<O>Factory interface to produce instances.- Author:
- Erich Schubert
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description elki.data.type.TypeInformationgetInputTypeRestriction()Get the input type informationWeightedNeighborSetPredicateinstantiate(elki.database.Database database, elki.database.relation.Relation<? extends O> relation)Instantiation method.
-
-
-
Method Detail
-
instantiate
WeightedNeighborSetPredicate instantiate(elki.database.Database database, elki.database.relation.Relation<? extends O> relation)
Instantiation method.- Parameters:
database- Database contextrelation- Relation to instantiate for.- Returns:
- instance
-
getInputTypeRestriction
elki.data.type.TypeInformation getInputTypeRestriction()
Get the input type information- Returns:
- input type
-
-