return "";
}
String key = keyPattern;
Param[] paramAnnotations = (Param[]) parameterAnnotations.get(Param.class);
for (int index = 0; index < parameterCount; index++) {
Param param = paramAnnotations[index];
if (param == null) {
continue;
}
String value = param.value();
String replaceToken = new StringBuilder(":").append(value).toString();
key = key.replace(replaceToken, arguments[index].toString());
}
StringBuilder actualKey = new StringBuilder();
if (isGenericCache) {