Package | Description |
---|---|
agi.foundation.infrastructure |
Contains types which support various aspects of the DME Component Libraries infrastructure.
|
Modifier and Type | Method and Description |
---|---|
static <T> HashCode.GetHashCodeFunction<T> |
HashCode.GetHashCodeFunction.of(HashCode.GetHashCodeFunction.Function<T> f)
Create a delegate for the given interface.
|
static <T> HashCode.GetHashCodeFunction<T> |
HashCode.GetHashCodeFunction.of(HashCode.GetHashCodeFunction.Function<T> f,
Class<?> targetClass,
String methodName,
Class<?>... methodParameterClasses)
Create a delegate for the given interface.
|
static <T> HashCode.GetHashCodeFunction<T> |
HashCode.GetHashCodeFunction.of(HashCode.GetHashCodeFunction.Function<T> f,
Object targetObject,
String methodName,
Class<?>... methodParameterClasses)
Create a delegate for the given interface.
|
Modifier and Type | Method and Description |
---|---|
static <T> int |
HashCode.getHashCode(Iterable<T> items,
HashCode.GetHashCodeFunction<T> hashCodeFunction)
Gets a hash code for the items in the specified sequence.
|
static <T> int |
HashCode.getHashCode(T[][] array,
HashCode.GetHashCodeFunction<T> hashCodeFunction)
Gets a hash code for the items in the specified two dimensional array.
|
static <T> int |
HashCode.getHashCode(T[] array,
HashCode.GetHashCodeFunction<T> hashCodeFunction)
Gets a hash code for the items in the specified array.
|