Home
last modified time | relevance | path

Searched refs:findTypeParameters (Results 1 – 13 of 13) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/
DTestTypeFactory1604.java131 JavaType[] params = tf.findTypeParameters(lefty, Either.class); in testResolveGenericPartialSubtypes()
139 params = tf.findTypeParameters(righty, Either.class); in testResolveGenericPartialSubtypes()
DTestTypeFactory.java548 JavaType[] params = tf.findTypeParameters(type, AtomicReference.class); in testAtomicArrayRefParameters()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DTypeFactory.java636 public JavaType[] findTypeParameters(JavaType type, Class<?> expType) in findTypeParameters() method in TypeFactory
649 public JavaType[] findTypeParameters(Class<?> clz, Class<?> expType, TypeBindings bindings) { in findTypeParameters() method in TypeFactory
650 return findTypeParameters(constructType(clz, bindings), expType); in findTypeParameters()
657 public JavaType[] findTypeParameters(Class<?> clz, Class<?> expType) { in findTypeParameters() method in TypeFactory
658 return findTypeParameters(constructType(clz), expType); in findTypeParameters()
DTypeBase.java151 public JavaType[] findTypeParameters(Class<?> expType) in findTypeParameters() method in TypeBase
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DJavaType.java467 public abstract JavaType[] findTypeParameters(Class<?> expType); in findTypeParameters() method in JavaType
/external/jackson-databind/attic/
DTypeBindings.java285 typeParams = _typeFactory.findTypeParameters(_contextType, raw); in _resolveBindings()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DAbstractDeserializer.java160 … idType = ctxt.getTypeFactory().findTypeParameters(type, ObjectIdGenerator.class)[0]; in createContextual()
DBeanDeserializerFactory.java391 idType = ctxt.getTypeFactory().findTypeParameters(type, ObjectIdGenerator.class)[0]; in addObjectIdReader()
DBeanDeserializerBase.java767 … idType = ctxt.getTypeFactory().findTypeParameters(type, ObjectIdGenerator.class)[0]; in createContextual()
DBasicDeserializerFactory.java1906 JavaType[] tps = tf.findTypeParameters(type, CLASS_ITERABLE); in findDefaultDeserializer()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/
DBasicSerializerFactory.java505 … JavaType[] params = config.getTypeFactory().findTypeParameters(javaType, Iterator.class); in findSerializerByAddonType()
511 … JavaType[] params = config.getTypeFactory().findTypeParameters(javaType, Iterable.class); in findSerializerByAddonType()
DBeanSerializerFactory.java524 … JavaType idType = prov.getTypeFactory().findTypeParameters(type, ObjectIdGenerator.class)[0]; in constructObjectIdHandler()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/
DBeanSerializerBase.java522 … JavaType idType = provider.getTypeFactory().findTypeParameters(type, ObjectIdGenerator.class)[0]; in createContextual()