Home
last modified time | relevance | path

Searched refs:withModifier (Results 1 – 7 of 7) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/
DTestTypeFactoryWithClassLoader.java51 …TypeFactory spySut = spy(mapper.getTypeFactory().withModifier(typeModifier).withClassLoader(classL… in testUsesCorrectClassLoaderWhenThreadClassLoaderIsNull()
63 …TypeFactory spySut = spy(mapper.getTypeFactory().withModifier(typeModifier).withClassLoader(classL… in testUsesCorrectClassLoaderWhenThreadClassLoaderIsNotNull()
74 TypeFactory sut = mapper.getTypeFactory().withModifier(typeModifier); in testCallingOnlyWithModifierGivesExpectedResults()
88 TypeFactory sut = mapper.getTypeFactory().withModifier(typeModifier).withClassLoader(classLoader); in testDefaultTypeFactoryNotAffectedByWithConstructors()
97 TypeFactory sut = mapper.getTypeFactory().withModifier(typeModifier).withClassLoader(classLoader); in testSetsTheCorrectClassLoderIfUsingWithModifierFollowedByWithClassLoader()
103 TypeFactory sut = mapper.getTypeFactory().withClassLoader(classLoader).withModifier(typeModifier); in testSetsTheCorrectClassLoderIfUsingWithClassLoaderFollowedByWithModifier()
DTestTypeFactory.java640 TypeFactory tf = TypeFactory.defaultInstance().withModifier(null); in testCacheClearing()
652 TypeFactory tf = TypeFactory.defaultInstance().withModifier(null); // to get a new copy in testRawMapType()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/module/
DTestTypeModifiers.java217 .typeFactory(TypeFactory.defaultInstance().withModifier(new MyTypeModifier()))
277 mapper.setTypeFactory(mapper.getTypeFactory().withModifier(new MyTypeModifier())); in testCollectionLikeSerialization()
285 mapper.setTypeFactory(mapper.getTypeFactory().withModifier(new MyTypeModifier())); in testMapLikeSerialization()
295 mapper.setTypeFactory(mapper.getTypeFactory().withModifier(new MyTypeModifier())); in testCollectionLikeDeserialization()
306 mapper.setTypeFactory(mapper.getTypeFactory().withModifier(new MyTypeModifier())); in testMapLikeDeserialization()
DTestTypeModifierNameResolution.java50 mapper.setTypeFactory(mapper.getTypeFactory().withModifier(new CustomTypeModifier())); in testTypeModiferNameResolution()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/
DBaseMapTest.java266 return TypeFactory.defaultInstance().withModifier(null); in newTypeFactory()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DTypeFactory.java189 public TypeFactory withModifier(TypeModifier mod) in withModifier() method in TypeFactory
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DObjectMapper.java936 f = f.withModifier(modifier); in registerModule()