Home
last modified time | relevance | path

Searched refs:UNWRAP_ROOT_VALUE (Results 1 – 5 of 5) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/
DTestRootName.java146 result = mapper.readerFor(Bean.class).with(DeserializationFeature.UNWRAP_ROOT_VALUE) in testReconfiguringOfWrapping()
153 result = mapper.readerFor(Bean.class).with(DeserializationFeature.UNWRAP_ROOT_VALUE) in testReconfiguringOfWrapping()
203 .enable(DeserializationFeature.UNWRAP_ROOT_VALUE)
DObjectMapperTest.java140 assertFalse(m.isEnabled(DeserializationFeature.UNWRAP_ROOT_VALUE)); in testCopy()
141 assertFalse(m2.isEnabled(DeserializationFeature.UNWRAP_ROOT_VALUE)); in testCopy()
142 m.enable(DeserializationFeature.UNWRAP_ROOT_VALUE); in testCopy()
143 assertTrue(m.isEnabled(DeserializationFeature.UNWRAP_ROOT_VALUE)); in testCopy()
144 assertFalse(m2.isEnabled(DeserializationFeature.UNWRAP_ROOT_VALUE)); in testCopy()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/convert/
DTestBeanConversions.java167 wrappingMapper.enable(DeserializationFeature.UNWRAP_ROOT_VALUE); in testWrapping()
176 wrappingMapper.enable(DeserializationFeature.UNWRAP_ROOT_VALUE); in testWrapping()
181 wrappingMapper.disable(DeserializationFeature.UNWRAP_ROOT_VALUE); in testWrapping()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DDeserializationFeature.java331 UNWRAP_ROOT_VALUE(false), enumConstant
DDeserializationConfig.java769 return isEnabled(DeserializationFeature.UNWRAP_ROOT_VALUE); in useRootWrapping()