Sha256: 29306b6abdd4da61810ec097e2c642fafa02da478acdf807886f3a321ea031df
Contents?: true
Size: 1.19 KB
Versions: 164
Compression:
Stored size: 1.19 KB
Contents
/** * Main public API classes of the core streaming JSON * processor: most importantly {@link sh.calaba.org.codehaus.jackson.JsonFactory} * used for constructing * JSON parser ({@link sh.calaba.org.codehaus.jackson.JsonParser}) * and generator * ({@link sh.calaba.org.codehaus.jackson.JsonParser}) * instances. * <p> * Public API of the higher-level mapping interfaces ("Mapping API") * is found from * under {@link sh.calaba.org.codehaus.jackson.map} and not included here, * except for following base interfaces: * <ul> *<li>{@link sh.calaba.org.codehaus.jackson.JsonNode} is included *within Streaming API to support integration of the Tree Model *(which is based on <code>JsonNode</code>) with the basic *parsers and generators (iff using mapping-supporting factory: which *is part of Mapping API, not core) * </li> *<li>{@link sh.calaba.org.codehaus.jackson.ObjectCodec} is included so that * reference to the object capable of serializing/deserializing * Objects to/from JSON (usually, {@link sh.calaba.org.codehaus.jackson.map.ObjectMapper}) * can be exposed, without adding direct dependency to implementation. * </li> *</ul> * </ul> */ package sh.calaba.org.codehaus.jackson;
Version data entries
164 entries across 164 versions & 2 rubygems