/external/jackson-core/src/main/java/com/fasterxml/jackson/core/type/ |
D | ResolvedType.java | 45 public abstract boolean isContainerType(); in isContainerType() method in ResolvedType
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/ |
D | TestJavaType.java | 94 assertFalse(baseType.isContainerType()); in testSimpleClass() 131 assertTrue(arrayT.isContainerType()); in testArrayType() 152 assertTrue(mapT.isContainerType()); in testMapType()
|
D | TestTypeFactory.java | 578 assertTrue(type.isContainerType()); in testRawCollections() 594 assertTrue(type.isContainerType()); in testRawMaps()
|
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/type/ |
D | TypeReferenceTest.java | 68 public boolean isContainerType() { in isContainerType() method in TypeReferenceTest.BogusResolvedType
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/ |
D | PlaceholderForType.java | 93 public boolean isContainerType() { in isContainerType() method in PlaceholderForType
|
D | ResolvedRecursiveType.java | 111 public boolean isContainerType() { in isContainerType() method in ResolvedRecursiveType
|
D | ArrayType.java | 169 public boolean isContainerType() { return true; } in isContainerType() method in ArrayType
|
D | CollectionLikeType.java | 174 public boolean isContainerType() { return true; } in isContainerType() method in CollectionLikeType
|
D | SimpleType.java | 243 public boolean isContainerType() { return false; } in isContainerType() method in SimpleType
|
D | MapLikeType.java | 209 public boolean isContainerType() { in isContainerType() method in MapLikeType
|
D | TypeFactory.java | 417 if (baseType.isContainerType()) { in constructSpecializedType()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/ |
D | DeserializerCache.java | 373 if (type.isContainerType()) { in _createDeserializer2() 548 if (t.isContainerType()) { in _hasCustomHandlers()
|
D | BeanDeserializerBase.java | 876 boolean isContainer = prop.getType().isContainerType(); in _resolveManagedReferenceProperty()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | JavaType.java | 329 public abstract boolean isContainerType(); in isContainerType() method in JavaType
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/ |
D | BeanUtil.java | 142 if (type.isContainerType() || type.isReferenceType()) { in getDefaultValue()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/ |
D | BasicClassIntrospector.java | 248 if (!type.isContainerType() || type.isArrayType()) { in _isStdJDKCollection()
|
D | AnnotatedClassResolver.java | 62 (!ClassUtil.isJDKClass(_class) || !_type.isContainerType()); in AnnotatedClassResolver()
|
D | JacksonAnnotationIntrospector.java | 583 if (baseType.isContainerType() || baseType.isReferenceType()) { in findPropertyTypeResolver()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/ |
D | PropertyBuilder.java | 219 if (actualType.isContainerType() in buildWriter()
|
D | BeanSerializerFactory.java | 195 if (type.isContainerType()) { in _createSerializer2() 826 if (type.isContainerType() || type.isReferenceType()) { in _constructWriter()
|
D | DefaultSerializerProvider.java | 428 if ((rootType != null) && rootType.isContainerType()) { in serializePolymorphic()
|
D | BasicSerializerFactory.java | 592 if (!type.isContainerType() || !type.getContentType().isJavaLangObject()) { in buildContainerSerializer()
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/module/ |
D | TestTypeModifiers.java | 197 if (!type.isContainerType()) { // not 100% required, minor optimization in modifyType()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/ |
D | BeanSerializerBase.java | 369 if (type.isContainerType() || type.containedTypeCount() > 0) { in resolve() 378 if (type.isContainerType()) { in resolve()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/ |
D | StdDeserializer.java | 1372 structured = (t.isContainerType() || t.isReferenceType()); in _coercedTypeDesc() 1676 if (type.isContainerType()) { in findContentNullProvider()
|