Package com.helger.commons.hashcode
Interface IHashCodeImplementation<T>
-
- Type Parameters:
T- The data type for which the hash code should be implemented
- 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 IHashCodeImplementation<T>
Interface to implement for custom hash code implementation. This interface is only used within theHashCodeImplementationRegistry.- Author:
- Philip Helger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetHashCode(T aObj)Get the hash code for the passed object
-