Package org.codehaus.jackson.map.deser.impl

Examples of org.codehaus.jackson.map.deser.impl.StringCollectionDeserializer


        @SuppressWarnings("unchecked")
        Constructor<Collection<Object>> ctor = ClassUtil.findConstructor((Class<Collection<Object>>)collectionClass, fixAccess);
        // 13-Dec-2010, tatu: Can use more optimal deserializer if content type is String, so:
        if (contentType.getRawClass() == String.class) {
            // no value type deserializer because Strings are one of natural/native types:
            return new StringCollectionDeserializer(type, contentDeser, ctor);
        }
        return new CollectionDeserializer(type, contentDeser, contentTypeDeser, ctor);
    }
View Full Code Here

TOP

Related Classes of org.codehaus.jackson.map.deser.impl.StringCollectionDeserializer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.