Package uk.megaslice.delta
Interface NaturalKey<T,K>
-
- Type Parameters:
T- the type of the dataset itemK- the type of the dataset item's natural key
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface NaturalKey<T,K>
A function to derive a natural key for a given dataset item.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KgetNaturalKey(T item)Returns a natural key for the given dataset item.
-