Searched refs:keyT (Results 1 – 2 of 2) sorted by relevance
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/ |
D | MapType.java | 21 JavaType superClass, JavaType[] superInts, JavaType keyT, JavaType valueT, in MapType() argument 24 keyT, valueT, valueHandler, typeHandler, asStatic); in MapType() 30 protected MapType(TypeBase base, JavaType keyT, JavaType valueT) { in MapType() argument 31 super(base, keyT, valueT); in MapType() 39 JavaType keyT, JavaType valueT) { in construct() argument 40 … return new MapType(rawType, bindings, superClass, superInts, keyT, valueT, null, null, false); in construct() 44 public static MapType construct(Class<?> rawType, JavaType keyT, JavaType valueT) in construct() argument 53 bindings = TypeBindings.create(rawType, keyT, valueT); in construct() 57 keyT, valueT, null, null, false); in construct()
|
D | MapLikeType.java | 36 JavaType superClass, JavaType[] superInts, JavaType keyT, in MapLikeType() argument 39 super(mapType, bindings, superClass, superInts, keyT.hashCode() in MapLikeType() 41 _keyType = keyT; in MapLikeType() 48 protected MapLikeType(TypeBase base, JavaType keyT, JavaType valueT) { in MapLikeType() argument 50 _keyType = keyT; in MapLikeType() 60 public static MapLikeType upgradeFrom(JavaType baseType, JavaType keyT, in upgradeFrom() argument 66 return new MapLikeType((TypeBase) baseType, keyT, valueT); in upgradeFrom() 74 public static MapLikeType construct(Class<?> rawType, JavaType keyT, in construct() argument 83 bindings = TypeBindings.create(rawType, keyT, valueT); in construct() 86 null, keyT, valueT, null, null, false); in construct()
|