Home
last modified time | relevance | path

Searched refs:CLOSE_CLOSEABLE (Results 1 – 8 of 8) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DSerializationFeature.java153 CLOSE_CLOSEABLE(false), enumConstant
DSequenceWriter.java90 _cfgCloseCloseable = _config.isEnabled(SerializationFeature.CLOSE_CLOSEABLE); in SequenceWriter()
DObjectWriter.java991 if (_config.isEnabled(SerializationFeature.CLOSE_CLOSEABLE) in writeValue()
1212 … if (_config.isEnabled(SerializationFeature.CLOSE_CLOSEABLE) && (value instanceof Closeable)) { in _writeValueAndClose()
DObjectMapper.java3084 … if (config.isEnabled(SerializationFeature.CLOSE_CLOSEABLE) && (value instanceof Closeable)) {
4431 if (cfg.isEnabled(SerializationFeature.CLOSE_CLOSEABLE) && (value instanceof Closeable)) {
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/seq/
DSequenceWriterTest.java200 .with(SerializationFeature.CLOSE_CLOSEABLE); in testSimpleCloseable()
219 .with(SerializationFeature.CLOSE_CLOSEABLE); in testWithExplicitType()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/
DObjectWriterTest.java142 .with(SerializationFeature.CLOSE_CLOSEABLE); in testWithCloseCloseable()
143 assertTrue(w.isEnabled(SerializationFeature.CLOSE_CLOSEABLE)); in testWithCloseCloseable()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/cfg/
DSerConfigTest.java18 … assertFalse(config.hasSerializationFeatures(SerializationFeature.CLOSE_CLOSEABLE.getMask())); in testSerConfig()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/
DSerializationFeaturesTest.java53 m.configure(SerializationFeature.CLOSE_CLOSEABLE, true); in testCloseCloseable()