Searched refs:JSON_MAPPER (Results 1 – 3 of 3) sorted by relevance
18 private final static JsonMapper JSON_MAPPER = new JsonMapper(); field in InternalNodeMapper20 private final static ObjectWriter STD_WRITER = JSON_MAPPER.writer();21 private final static ObjectWriter PRETTY_WRITER = JSON_MAPPER.writer()24 private final static ObjectReader NODE_READER = JSON_MAPPER.readerFor(JsonNode.class);47 return JSON_MAPPER.writeValueAsBytes(value); in valueToBytes()
42 private static final ObjectMapper JSON_MAPPER = new ObjectMapper(); field in TestCreatorsWithIdentity48 Parent parent = JSON_MAPPER.readValue(parentStr, Parent.class); in testSimple()50 Child child = JSON_MAPPER.readValue(childStr, Child.class); in testSimple()
74 private static final ObjectMapper JSON_MAPPER = new ObjectMapper(); field in ConvertingAbstractSerializer795Test78 AbstractCustomTypeUser cu = JSON_MAPPER.readValue(test, AbstractCustomTypeUser.class); in testAbstractTypeDeserialization()84 NonAbstractCustomTypeUser cu = JSON_MAPPER.readValue(test, NonAbstractCustomTypeUser.class); in testNonAbstractDeserialization()