Home
last modified time | relevance | path

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

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DMapType.java96 public MapType withStaticTyping() { in withStaticTyping() method in MapType
101 … _superClass, _superInterfaces, _keyType.withStaticTyping(), _valueType.withStaticTyping(), in withStaticTyping()
DCollectionType.java108 public CollectionType withStaticTyping() { in withStaticTyping() method in CollectionType
113 _superClass, _superInterfaces, _elementType.withStaticTyping(), in withStaticTyping()
DArrayType.java95 public ArrayType withStaticTyping() { in withStaticTyping() method in ArrayType
99 return new ArrayType(_componentType.withStaticTyping(), _bindings, in withStaticTyping()
DReferenceType.java145 public ReferenceType withStaticTyping() { in withStaticTyping() method in ReferenceType
150 _referencedType.withStaticTyping(), _anchorType, in withStaticTyping()
DCollectionLikeType.java150 public CollectionLikeType withStaticTyping() { in withStaticTyping() method in CollectionLikeType
155 _superClass, _superInterfaces, _elementType.withStaticTyping(), in withStaticTyping()
DMapLikeType.java172 public MapLikeType withStaticTyping() { in withStaticTyping() method in MapLikeType
177 _superInterfaces, _keyType, _valueType.withStaticTyping(), in withStaticTyping()
DPlaceholderForType.java77 public JavaType withStaticTyping() { in withStaticTyping() method in PlaceholderForType
DResolvedRecursiveType.java94 public JavaType withStaticTyping() { in withStaticTyping() method in ResolvedRecursiveType
DSimpleType.java203 public SimpleType withStaticTyping() { in withStaticTyping() method in SimpleType
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DJacksonAnnotationIntrospector.java808 type = type.withStaticTyping(); in refineSerializationType()
820 type = type.withStaticTyping(); in refineSerializationType()
842 keyType = keyType.withStaticTyping(); in refineSerializationType()
855 keyType = keyType.withStaticTyping(); in refineSerializationType()
878 contentType = contentType.withStaticTyping(); in refineSerializationType()
891 contentType = contentType.withStaticTyping(); in refineSerializationType()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DJavaType.java182 public abstract JavaType withStaticTyping(); in withStaticTyping() method in JavaType
DObjectWriter.java114 _prefetch = Prefetch.empty.forRootType(this, rootType.withStaticTyping()); in ObjectWriter()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/
DPropertyBuilder.java296 return declaredType.withStaticTyping(); in findSerializationType()