Packages

final class Mixin extends JsonMapper with ClassTagExtensions

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Mixin
  2. ClassTagExtensions
  3. JsonMapper
  4. ObjectMapper
  5. Serializable
  6. Versioned
  7. TreeCodec
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def _assertNotNull(paramName: String, src: AnyRef): Unit
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
  5. final def _configAndWriteValue(ctxt: SerializationContextExt, g: JsonGenerator, value: AnyRef): Unit
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  6. def _convert(fromValue: AnyRef, toValueType: JavaType): AnyRef
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  7. def _deserializationContext(): DeserializationContextExt
    Definition Classes
    ObjectMapper
  8. def _deserializationContext(p: JsonParser): DeserializationContextExt
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
  9. def _findRootDeserializer(ctxt: DeserializationContext, valueType: JavaType): ValueDeserializer[AnyRef]
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  10. def _initForReading(p: JsonParser, targetType: JavaType): JsonToken
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  11. def _initializeGenerator(gen: JsonGenerator): JsonGenerator
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
  12. def _newReader(config: DeserializationConfig, valueType: JavaType, valueToUpdate: AnyRef, schema: FormatSchema, injectableValues: InjectableValues): ObjectReader
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
  13. def _newReader(config: DeserializationConfig): ObjectReader
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
  14. def _newWriter(config: SerializationConfig, rootType: JavaType, pp: PrettyPrinter): ObjectWriter
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
  15. def _newWriter(config: SerializationConfig, schema: FormatSchema): ObjectWriter
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
  16. def _newWriter(config: SerializationConfig): ObjectWriter
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
  17. def _readMapAndClose(ctxt: DeserializationContextExt, p0: JsonParser, valueType: JavaType): AnyRef
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  18. def _readTreeAndClose(ctxt: DeserializationContextExt, p0: JsonParser): JsonNode
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  19. def _readValue(ctxt: DeserializationContextExt, p: JsonParser, valueType: JavaType): AnyRef
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  20. def _serializationContext(): SerializationContextExt
    Definition Classes
    ObjectMapper
  21. def _serializationContext(config: SerializationConfig): SerializationContextExt
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
  22. final def _verifyNoTrailingTokens(p: JsonParser, ctxt: DeserializationContext, bindType: JavaType): Unit
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  23. def _verifySchemaType(schema: FormatSchema): Unit
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
  24. final def _writeCloseableValue(g: JsonGenerator, value: AnyRef, cfg: SerializationConfig): Unit
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  25. def acceptJsonFormatVisitor(type: JavaType, visitor: JsonFormatVisitorWrapper): Unit
    Definition Classes
    ObjectMapper
  26. def acceptJsonFormatVisitor(typeRef: TypeReference[_ <: AnyRef], visitor: JsonFormatVisitorWrapper): Unit
    Definition Classes
    ObjectMapper
  27. def acceptJsonFormatVisitor(type: Class[_ <: AnyRef], visitor: JsonFormatVisitorWrapper): Unit
    Definition Classes
    ObjectMapper
  28. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  29. def booleanNode(b: Boolean): JsonNode
    Definition Classes
    ObjectMapper → TreeCodec
  30. def clearCaches(): Unit
    Definition Classes
    ObjectMapper
  31. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  32. def constructType[T](implicit arg0: JavaTypeable[T]): JavaType

    Convenience method for constructing tools.jackson.databind.JavaType out of given type (typically java.lang.Class), but without explicit context.

    Convenience method for constructing tools.jackson.databind.JavaType out of given type (typically java.lang.Class), but without explicit context.

    Definition Classes
    ClassTagExtensions
  33. def constructType(typeReference: TypeReference[_ <: AnyRef]): JavaType
    Definition Classes
    ObjectMapper
  34. def constructType(type: Type): JavaType
    Definition Classes
    ObjectMapper
  35. def convertValue[T](fromValue: Any)(implicit arg0: JavaTypeable[T]): T

    Convenience method for doing two-step conversion from given value, into instance of given value type.

    Convenience method for doing two-step conversion from given value, into instance of given value type. This is functionality equivalent to first serializing given value into JSON, then binding JSON data into value of given type, but may be executed without fully serializing into JSON. Same converters (serializers, deserializers) will be used as for data binding, meaning same object mapper configuration works.

    Definition Classes
    ClassTagExtensions
    Exceptions thrown

    java.lang.IllegalArgumentException If conversion fails due to incompatible type; if so, root cause will contain underlying checked exception data binding functionality threw

  36. def convertValue[T <: AnyRef](fromValue: AnyRef, toValueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[java.lang.IllegalArgumentException])
  37. def convertValue[T <: AnyRef](fromValue: AnyRef, toValueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[java.lang.IllegalArgumentException])
  38. def convertValue[T <: AnyRef](fromValue: AnyRef, toValueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[java.lang.IllegalArgumentException])
  39. def createArrayNode(): ArrayNode
    Definition Classes
    ObjectMapper → TreeCodec
  40. def createGenerator(out: DataOutput): JsonGenerator
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  41. def createGenerator(path: Path, enc: JsonEncoding): JsonGenerator
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  42. def createGenerator(f: File, enc: JsonEncoding): JsonGenerator
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  43. def createGenerator(w: Writer): JsonGenerator
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  44. def createGenerator(out: OutputStream, enc: JsonEncoding): JsonGenerator
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  45. def createGenerator(out: OutputStream): JsonGenerator
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  46. def createNonBlockingByteArrayParser(): JsonParser
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  47. def createNonBlockingByteBufferParser(): JsonParser
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  48. def createObjectNode(): ObjectNode
    Definition Classes
    ObjectMapper → TreeCodec
  49. def createParser(content: DataInput): JsonParser
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  50. def createParser(content: Array[Char], offset: Int, len: Int): JsonParser
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  51. def createParser(content: Array[Char]): JsonParser
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  52. def createParser(content: String): JsonParser
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  53. def createParser(content: Array[Byte], offset: Int, len: Int): JsonParser
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  54. def createParser(content: Array[Byte]): JsonParser
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  55. def createParser(r: Reader): JsonParser
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  56. def createParser(in: InputStream): JsonParser
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  57. def createParser(src: Path): JsonParser
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  58. def createParser(src: File): JsonParser
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  59. def deserializationConfig(): DeserializationConfig
    Definition Classes
    ObjectMapper
  60. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  61. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  62. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  63. def getInjectableValues(): InjectableValues
    Definition Classes
    ObjectMapper
  64. def getNodeFactory(): JsonNodeFactory
    Definition Classes
    ObjectMapper
  65. def getTypeFactory(): TypeFactory
    Definition Classes
    ObjectMapper
  66. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  67. def isEnabled(f: JsonWriteFeature): Boolean
    Definition Classes
    JsonMapper
  68. def isEnabled(f: JsonReadFeature): Boolean
    Definition Classes
    JsonMapper
  69. def isEnabled(f: DatatypeFeature): Boolean
    Definition Classes
    ObjectMapper
  70. def isEnabled(f: SerializationFeature): Boolean
    Definition Classes
    ObjectMapper
  71. def isEnabled(f: DeserializationFeature): Boolean
    Definition Classes
    ObjectMapper
  72. def isEnabled(f: MapperFeature): Boolean
    Definition Classes
    ObjectMapper
  73. def isEnabled(f: StreamWriteFeature): Boolean
    Definition Classes
    ObjectMapper
  74. def isEnabled(f: StreamReadFeature): Boolean
    Definition Classes
    ObjectMapper
  75. def isEnabled(f: Feature): Boolean
    Definition Classes
    ObjectMapper
  76. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  77. def missingNode(): JsonNode
    Definition Classes
    ObjectMapper → TreeCodec
  78. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  79. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  80. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  81. def nullNode(): JsonNode
    Definition Classes
    ObjectMapper → TreeCodec
  82. def readResolve(): AnyRef
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
  83. def readTree(jsonParser: JsonParser): JsonNode
    Definition Classes
    Mixin → ObjectMapper → TreeCodec
  84. def readTree(src: TokenBuffer): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  85. def readTree(path: Path): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  86. def readTree(file: File): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  87. def readTree(content: Array[Byte], offset: Int, len: Int): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  88. def readTree(content: Array[Byte]): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  89. def readTree(content: String): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  90. def readTree(r: Reader): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  91. def readTree(in: InputStream): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  92. def readValue[T](src: Array[Byte], offset: Int, len: Int)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  93. def readValue[T](src: Array[Byte])(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  94. def readValue[T](src: InputStream)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  95. def readValue[T](src: Reader)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  96. def readValue[T](content: String)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  97. def readValue[T](src: File)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  98. def readValue[T](jp: JsonParser)(implicit arg0: JavaTypeable[T]): T

    Method to deserialize JSON content into a Java type, reference to which is passed as argument.

    Method to deserialize JSON content into a Java type, reference to which is passed as argument. Type is passed using so-called "super type token" (see ) and specifically needs to be used if the root type is a parameterized (generic) container type.

    Definition Classes
    ClassTagExtensions
  99. def readValue[T <: AnyRef](src: TokenBuffer, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  100. def readValue[T <: AnyRef](src: TokenBuffer, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  101. def readValue[T <: AnyRef](src: TokenBuffer, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  102. def readValue[T <: AnyRef](src: DataInput, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  103. def readValue[T <: AnyRef](src: DataInput, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  104. def readValue[T <: AnyRef](src: DataInput, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  105. def readValue[T <: AnyRef](content: Array[Byte], offset: Int, len: Int, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  106. def readValue[T <: AnyRef](content: Array[Byte], valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  107. def readValue[T <: AnyRef](content: Array[Byte], offset: Int, len: Int, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  108. def readValue[T <: AnyRef](content: Array[Byte], valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  109. def readValue[T <: AnyRef](content: Array[Byte], offset: Int, len: Int, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  110. def readValue[T <: AnyRef](content: Array[Byte], valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  111. def readValue[T <: AnyRef](src: InputStream, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  112. def readValue[T <: AnyRef](src: InputStream, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  113. def readValue[T <: AnyRef](src: InputStream, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  114. def readValue[T <: AnyRef](src: Reader, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  115. def readValue[T <: AnyRef](src: Reader, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  116. def readValue[T <: AnyRef](src: Reader, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  117. def readValue[T <: AnyRef](content: String, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  118. def readValue[T <: AnyRef](content: String, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  119. def readValue[T <: AnyRef](content: String, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  120. def readValue[T <: AnyRef](src: Path, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  121. def readValue[T <: AnyRef](src: Path, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  122. def readValue[T <: AnyRef](src: Path, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  123. def readValue[T <: AnyRef](src: File, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  124. def readValue[T <: AnyRef](src: File, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  125. def readValue[T <: AnyRef](src: File, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  126. def readValue[T <: AnyRef](p: JsonParser, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  127. def readValue[T <: AnyRef](p: JsonParser, valueType: ResolvedType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  128. def readValue[T <: AnyRef](p: JsonParser, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  129. def readValue[T <: AnyRef](p: JsonParser, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  130. def readValues[T](jp: JsonParser)(implicit arg0: JavaTypeable[T]): MappingIterator[T]

    Method for reading sequence of Objects from parser stream.

    Method for reading sequence of Objects from parser stream. Sequence can be either root-level "unwrapped" sequence (without surrounding JSON array), or a sequence contained in a JSON Array. In either case tools.jackson.core.JsonParser must point to the first token of the first element, OR not point to any token (in which case it is advanced to the next token). This means, specifically, that for wrapped sequences, parser MUST NOT point to the surrounding START_ARRAY but rather to the token following it.

    Note that tools.jackson.databind.ObjectReader has more complete set of variants.

    Definition Classes
    ClassTagExtensions
  131. def readValues[T <: AnyRef](p: JsonParser, valueType: TypeReference[T]): MappingIterator[T]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  132. def readValues[T <: AnyRef](p: JsonParser, valueType: Class[T]): MappingIterator[T]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  133. def readValues[T <: AnyRef](p: JsonParser, valueType: JavaType): MappingIterator[T]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  134. def reader(attrs: ContextAttributes): ObjectReader
    Definition Classes
    ObjectMapper
  135. def reader(defaultBase64: Base64Variant): ObjectReader
    Definition Classes
    ObjectMapper
  136. def reader(injectableValues: InjectableValues): ObjectReader
    Definition Classes
    ObjectMapper
  137. def reader(schema: FormatSchema): ObjectReader
    Definition Classes
    ObjectMapper
  138. def reader(nodeFactory: JsonNodeFactory): ObjectReader
    Definition Classes
    ObjectMapper
  139. def reader(feature: DatatypeFeature): ObjectReader
    Definition Classes
    ObjectMapper
  140. def reader(first: DeserializationFeature, other: <repeated...>[DeserializationFeature]): ObjectReader
    Definition Classes
    ObjectMapper
    Annotations
    @transient()
  141. def reader(feature: DeserializationFeature): ObjectReader
    Definition Classes
    ObjectMapper
  142. def reader(): ObjectReader
    Definition Classes
    ObjectMapper
  143. def readerFor[T](implicit arg0: JavaTypeable[T]): ObjectReader

    Factory method for constructing tools.jackson.databind.ObjectReader that will read or update instances of specified type

    Factory method for constructing tools.jackson.databind.ObjectReader that will read or update instances of specified type

    Definition Classes
    ClassTagExtensions
  144. def readerFor(typeRef: TypeReference[_ <: AnyRef]): ObjectReader
    Definition Classes
    ObjectMapper
  145. def readerFor(type: Class[_ <: AnyRef]): ObjectReader
    Definition Classes
    ObjectMapper
  146. def readerFor(type: JavaType): ObjectReader
    Definition Classes
    ObjectMapper
  147. def readerForArrayOf(type: Class[_ <: AnyRef]): ObjectReader
    Definition Classes
    ObjectMapper
  148. def readerForListOf(type: Class[_ <: AnyRef]): ObjectReader
    Definition Classes
    ObjectMapper
  149. def readerForMapOf(type: Class[_ <: AnyRef]): ObjectReader
    Definition Classes
    ObjectMapper
  150. def readerForUpdating(valueToUpdate: AnyRef): ObjectReader
    Definition Classes
    ObjectMapper
  151. def readerWithView[T](implicit arg0: ClassTag[T]): ObjectReader

    Factory method for constructing tools.jackson.databind.ObjectReader that will deserialize objects using specified JSON View (filter).

    Factory method for constructing tools.jackson.databind.ObjectReader that will deserialize objects using specified JSON View (filter).

    Definition Classes
    ClassTagExtensions
  152. def readerWithView(view: Class[_ <: AnyRef]): ObjectReader
    Definition Classes
    ObjectMapper
  153. def rebuild(): Builder
    Definition Classes
    JsonMapper
  154. def rebuild[M <: ObjectMapper, B <: MapperBuilder[M, B]](): MapperBuilder[M, B]
    Definition Classes
    ObjectMapper
  155. def registeredModules(): Collection[databind.JacksonModule]
    Definition Classes
    ObjectMapper
  156. def serializationConfig(): SerializationConfig
    Definition Classes
    ObjectMapper
  157. def stringNode(text: String): JsonNode
    Definition Classes
    ObjectMapper → TreeCodec
  158. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  159. def toString(): String
    Definition Classes
    AnyRef → Any
  160. def tokenStreamFactory(): JsonFactory
    Definition Classes
    JsonMapper → ObjectMapper
  161. def treeAsTokens(n: JsonNode): JsonParser
    Definition Classes
    ObjectMapper → TreeCodec
  162. def treeToValue[T](n: TreeNode)(implicit arg0: JavaTypeable[T]): T

    Convenience conversion method that will bind data given JSON tree contains into specific value (usually bean) type.

    Convenience conversion method that will bind data given JSON tree contains into specific value (usually bean) type.

    Equivalent to:

    objectMapper.convertValue(n, valueClass);
    

    Definition Classes
    ClassTagExtensions
  163. def treeToValue[T <: AnyRef](n: JsonNode, toValueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  164. def treeToValue[T <: AnyRef](n: JsonNode, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  165. def treeToValue[T <: AnyRef](n: JsonNode, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  166. def updateValue[T](valueToUpdate: T, src: Array[Byte], offset: Int, len: Int)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  167. def updateValue[T](valueToUpdate: T, src: Array[Byte])(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  168. def updateValue[T](valueToUpdate: T, src: InputStream)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  169. def updateValue[T](valueToUpdate: T, src: Reader)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  170. def updateValue[T](valueToUpdate: T, content: String)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  171. def updateValue[T](valueToUpdate: T, src: File)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  172. def updateValue[T <: AnyRef](valueToUpdate: T, overrides: AnyRef): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  173. def valueToTree[T <: JsonNode](fromValue: AnyRef): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  174. def version(): Version
    Definition Classes
    JsonMapper → ObjectMapper → Versioned
  175. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  176. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  177. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  178. def writeReplace(): AnyRef
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
  179. def writeTree(g: JsonGenerator, rootNode: JsonNode): Unit
    Definition Classes
    ObjectMapper → TreeCodec
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  180. def writeValue(w: Writer, value: AnyRef): Unit
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  181. def writeValue(out: DataOutput, value: AnyRef): Unit
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  182. def writeValue(out: OutputStream, value: AnyRef): Unit
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  183. def writeValue(path: Path, value: AnyRef): Unit
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  184. def writeValue(file: File, value: AnyRef): Unit
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  185. def writeValue(g: JsonGenerator, value: AnyRef): Unit
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  186. def writeValueAsBytes(value: AnyRef): Array[Byte]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  187. def writeValueAsString(value: AnyRef): String
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  188. def writeValueIntoBuffer(value: AnyRef): TokenBuffer
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  189. def writer(attrs: ContextAttributes): ObjectWriter
    Definition Classes
    ObjectMapper
  190. def writer(escapes: CharacterEscapes): ObjectWriter
    Definition Classes
    ObjectMapper
  191. def writer(defaultBase64: Base64Variant): ObjectWriter
    Definition Classes
    ObjectMapper
  192. def writer(schema: FormatSchema): ObjectWriter
    Definition Classes
    ObjectMapper
  193. def writer(filterProvider: FilterProvider): ObjectWriter
    Definition Classes
    ObjectMapper
  194. def writer(df: DateFormat): ObjectWriter
    Definition Classes
    ObjectMapper
  195. def writer(f: DatatypeFeature): ObjectWriter
    Definition Classes
    ObjectMapper
  196. def writer(first: SerializationFeature, other: <repeated...>[SerializationFeature]): ObjectWriter
    Definition Classes
    ObjectMapper
    Annotations
    @transient()
  197. def writer(feature: SerializationFeature): ObjectWriter
    Definition Classes
    ObjectMapper
  198. def writer(): ObjectWriter
    Definition Classes
    ObjectMapper
  199. def writerFor[T](implicit arg0: JavaTypeable[T]): ObjectWriter

    Factory method for constructing tools.jackson.databind.ObjectWriter that will serialize objects using specified root type, instead of actual runtime type of value.

    Factory method for constructing tools.jackson.databind.ObjectWriter that will serialize objects using specified root type, instead of actual runtime type of value. Type must be a super-type of runtime type.

    Main reason for using this method is performance, as writer is able to pre-fetch serializer to use before write, and if writer is used more than once this avoids addition per-value serializer lookups.

    Definition Classes
    ClassTagExtensions
  200. def writerFor(rootType: JavaType): ObjectWriter
    Definition Classes
    ObjectMapper
  201. def writerFor(rootType: TypeReference[_ <: AnyRef]): ObjectWriter
    Definition Classes
    ObjectMapper
  202. def writerFor(rootType: Class[_ <: AnyRef]): ObjectWriter
    Definition Classes
    ObjectMapper
  203. def writerWithDefaultPrettyPrinter(): ObjectWriter
    Definition Classes
    ObjectMapper
  204. def writerWithView[T](implicit arg0: ClassTag[T]): ObjectWriter

    Factory method for constructing tools.jackson.databind.ObjectWriter that will serialize objects using specified JSON View (filter).

    Factory method for constructing tools.jackson.databind.ObjectWriter that will serialize objects using specified JSON View (filter).

    Definition Classes
    ClassTagExtensions
  205. def writerWithView(serializationView: Class[_ <: AnyRef]): ObjectWriter
    Definition Classes
    ObjectMapper

Deprecated Value Members

  1. def _deserializationContext(config: DeserializationConfig, p: JsonParser): DeserializationContextExt
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
    Annotations
    @Deprecated
    Deprecated
  2. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  3. def treeToValue[T <: AnyRef](n: TreeNode, toValueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException]) @Deprecated
    Deprecated
  4. def treeToValue[T <: AnyRef](n: TreeNode, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException]) @Deprecated
    Deprecated
  5. def treeToValue[T <: AnyRef](n: TreeNode, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException]) @Deprecated
    Deprecated

Inherited from ClassTagExtensions

Inherited from JsonMapper

Inherited from ObjectMapper

Inherited from Serializable

Inherited from Versioned

Inherited from TreeCodec[JsonNode]

Inherited from AnyRef

Inherited from Any

Ungrouped