D | MapLikeType.java | 16 public class MapLikeType extends TypeBase { class 35 protected MapLikeType(Class<?> mapType, TypeBindings bindings, in MapLikeType() method in MapLikeType 48 protected MapLikeType(TypeBase base, JavaType keyT, JavaType valueT) { in MapLikeType() method in MapLikeType 60 public static MapLikeType upgradeFrom(JavaType baseType, JavaType keyT, in upgradeFrom() 66 return new MapLikeType((TypeBase) baseType, keyT, valueT); in upgradeFrom() 74 public static MapLikeType construct(Class<?> rawType, JavaType keyT, in construct() 85 return new MapLikeType(rawType, bindings, _bogusSuperClass(rawType), in construct() 93 return new MapLikeType(subclass, _bindings, _superClass, in _narrow() 101 public MapLikeType withKeyType(JavaType keyType) { in withKeyType() 105 return new MapLikeType(_class, _bindings, _superClass, in withKeyType() [all …]
|