TypeBuilder icon indicating copy to clipboard operation
TypeBuilder copied to clipboard

用Builder生成泛型,generics type builder

Results 2 TypeBuilder issues
Sort by recently updated
recently updated
newest added

例如 String typeStr = "java.util.Map" 可以将typeStr 转化成Type , 效果和这个一样: Type type = TypeBuilder .newInstance(Map.class) .addTypeParam(String.class) .beginSubType(List.class) .addTypeParam(List[].class) .endSubType() .build();