4041424344454647484950
} private HashFunction getHashFunction(String hashConf) { HashType hashType = HashType.valueOf(hashConf); HashFunction fun = null; switch (hashType) { case FNV: fun = new FnvHashFunction(); break;