Searched refs:collectionClass (Results 1 – 2 of 2) sorted by relevance
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/ |
D | TypeFactory.java | 813 public CollectionType constructCollectionType(Class<? extends Collection> collectionClass, in constructCollectionType() argument 815 return constructCollectionType(collectionClass, in constructCollectionType() 825 public CollectionType constructCollectionType(Class<? extends Collection> collectionClass, in constructCollectionType() argument 828 TypeBindings bindings = TypeBindings.createIfNeeded(collectionClass, elementType); in constructCollectionType() 829 CollectionType result = (CollectionType) _fromClass(null, collectionClass, bindings); in constructCollectionType() 838 ClassUtil.nameOf(collectionClass), elementType, realET)); in constructCollectionType() 850 …public CollectionLikeType constructCollectionLikeType(Class<?> collectionClass, Class<?> elementCl… in constructCollectionLikeType() argument 851 return constructCollectionLikeType(collectionClass, in constructCollectionLikeType() 861 …public CollectionLikeType constructCollectionLikeType(Class<?> collectionClass, JavaType elementTy… in constructCollectionLikeType() argument 862 JavaType type = _fromClass(null, collectionClass, in constructCollectionLikeType() [all …]
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/ |
D | BasicDeserializerFactory.java | 1188 Class<?> collectionClass = type.getRawClass(); in createCollectionDeserializer() local 1191 if (EnumSet.class.isAssignableFrom(collectionClass)) { in createCollectionDeserializer() 1254 final Class<?> collectionClass = ContainerDefaultMappings.findCollectionFallback(type); in _mapAbstractCollectionType() local 1255 if (collectionClass != null) { in _mapAbstractCollectionType() 1257 .constructSpecializedType(type, collectionClass, true); in _mapAbstractCollectionType()
|