79738216

Date: 2025-08-18 01:36:12
Score: 0.5
Natty:
Report link

Apache Commons Lang has TypeUtils.parameterize:

import org.apache.commons.lang3.reflect.TypeUtils;

public class Test {
    public static void main(String... args) {
        Type mapStringString = TypeUtils.parameterize(Map.class, String.class, String.class);
        // ...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Seggan