com.aliyun.odps.tunnel.hasher.OdpsHasher Maven / Gradle / Ivy
The newest version!
package com.aliyun.odps.tunnel.hasher;
/**
* Hasher function interface
*/
public interface OdpsHasher {
/**
* Get hash value
* @param val
* @return
*/
@SuppressWarnings("unchecked")
int hash(T val);
default T normalizeType(Object value) {
return (T)value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy