If I write bytebuddy code
.defineProperty("hm",TypeDescription.Generic.Builder.parameterizedType(HashMap.class, String.class, HashSet.class).build())
like this ,Then result is
private HashMap<String, HashSet> hm;
but my requirement is
private HashMap<String, HashSet<String>> hm;