Packages

final class ObjectMapperMixin extends ObjectMapper with ClassTagExtensions

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ObjectMapperMixin
  2. ClassTagExtensions
  3. ObjectMapper
  4. Serializable
  5. Versioned
  6. TreeCodec
  7. AnyRef
  8. 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: DatatypeFeature): Boolean
    Definition Classes
    ObjectMapper
  68. def isEnabled(f: SerializationFeature): Boolean
    Definition Classes
    ObjectMapper
  69. def isEnabled(f: DeserializationFeature): Boolean
    Definition Classes
    ObjectMapper
  70. def isEnabled(f: MapperFeature): Boolean
    Definition Classes
    ObjectMapper
  71. def isEnabled(f: StreamWriteFeature): Boolean
    Definition Classes
    ObjectMapper
  72. def isEnabled(f: StreamReadFeature): Boolean
    Definition Classes
    ObjectMapper
  73. def isEnabled(f: Feature): Boolean
    Definition Classes
    ObjectMapper
  74. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  75. def missingNode(): JsonNode
    Definition Classes
    ObjectMapper → TreeCodec
  76. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  77. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  78. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  79. def nullNode(): JsonNode
    Definition Classes
    ObjectMapper → TreeCodec
  80. def readResolve(): AnyRef
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
  81. def readTree(jsonParser: JsonParser): JsonNode
    Definition Classes
    ObjectMapperMixin → ObjectMapper → TreeCodec
  82. def readTree(src: TokenBuffer): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  83. def readTree(path: Path): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  84. def readTree(file: File): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  85. def readTree(content: Array[Byte], offset: Int, len: Int): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  86. def readTree(content: Array[Byte]): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  87. def readTree(content: String): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  88. def readTree(r: Reader): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  89. def readTree(in: InputStream): JsonNode
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  90. def readValue[T](src: Array[Byte], offset: Int, len: Int)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  91. def readValue[T](src: Array[Byte])(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  92. def readValue[T](src: InputStream)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  93. def readValue[T](src: Reader)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  94. def readValue[T](content: String)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  95. def readValue[T](src: File)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  96. 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
  97. def readValue[T <: AnyRef](src: TokenBuffer, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  98. def readValue[T <: AnyRef](src: TokenBuffer, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  99. def readValue[T <: AnyRef](src: TokenBuffer, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  100. def readValue[T <: AnyRef](src: DataInput, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  101. def readValue[T <: AnyRef](src: DataInput, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  102. def readValue[T <: AnyRef](src: DataInput, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  103. def readValue[T <: AnyRef](content: Array[Byte], offset: Int, len: Int, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  104. def readValue[T <: AnyRef](content: Array[Byte], valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  105. 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])
  106. def readValue[T <: AnyRef](content: Array[Byte], valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  107. 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])
  108. def readValue[T <: AnyRef](content: Array[Byte], valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  109. def readValue[T <: AnyRef](src: InputStream, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  110. def readValue[T <: AnyRef](src: InputStream, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  111. def readValue[T <: AnyRef](src: InputStream, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  112. def readValue[T <: AnyRef](src: Reader, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  113. def readValue[T <: AnyRef](src: Reader, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  114. def readValue[T <: AnyRef](src: Reader, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  115. def readValue[T <: AnyRef](content: String, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  116. def readValue[T <: AnyRef](content: String, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  117. def readValue[T <: AnyRef](content: String, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  118. def readValue[T <: AnyRef](src: Path, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  119. def readValue[T <: AnyRef](src: Path, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  120. def readValue[T <: AnyRef](src: Path, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  121. def readValue[T <: AnyRef](src: File, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  122. def readValue[T <: AnyRef](src: File, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  123. def readValue[T <: AnyRef](src: File, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  124. def readValue[T <: AnyRef](p: JsonParser, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  125. def readValue[T <: AnyRef](p: JsonParser, valueType: ResolvedType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  126. def readValue[T <: AnyRef](p: JsonParser, valueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  127. def readValue[T <: AnyRef](p: JsonParser, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  128. 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
  129. def readValues[T <: AnyRef](p: JsonParser, valueType: TypeReference[T]): MappingIterator[T]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  130. def readValues[T <: AnyRef](p: JsonParser, valueType: Class[T]): MappingIterator[T]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  131. def readValues[T <: AnyRef](p: JsonParser, valueType: JavaType): MappingIterator[T]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  132. def reader(attrs: ContextAttributes): ObjectReader
    Definition Classes
    ObjectMapper
  133. def reader(defaultBase64: Base64Variant): ObjectReader
    Definition Classes
    ObjectMapper
  134. def reader(injectableValues: InjectableValues): ObjectReader
    Definition Classes
    ObjectMapper
  135. def reader(schema: FormatSchema): ObjectReader
    Definition Classes
    ObjectMapper
  136. def reader(nodeFactory: JsonNodeFactory): ObjectReader
    Definition Classes
    ObjectMapper
  137. def reader(feature: DatatypeFeature): ObjectReader
    Definition Classes
    ObjectMapper
  138. def reader(first: DeserializationFeature, other: <repeated...>[DeserializationFeature]): ObjectReader
    Definition Classes
    ObjectMapper
    Annotations
    @transient()
  139. def reader(feature: DeserializationFeature): ObjectReader
    Definition Classes
    ObjectMapper
  140. def reader(): ObjectReader
    Definition Classes
    ObjectMapper
  141. 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
  142. def readerFor(typeRef: TypeReference[_ <: AnyRef]): ObjectReader
    Definition Classes
    ObjectMapper
  143. def readerFor(type: Class[_ <: AnyRef]): ObjectReader
    Definition Classes
    ObjectMapper
  144. def readerFor(type: JavaType): ObjectReader
    Definition Classes
    ObjectMapper
  145. def readerForArrayOf(type: Class[_ <: AnyRef]): ObjectReader
    Definition Classes
    ObjectMapper
  146. def readerForListOf(type: Class[_ <: AnyRef]): ObjectReader
    Definition Classes
    ObjectMapper
  147. def readerForMapOf(type: Class[_ <: AnyRef]): ObjectReader
    Definition Classes
    ObjectMapper
  148. def readerForUpdating(valueToUpdate: AnyRef): ObjectReader
    Definition Classes
    ObjectMapper
  149. 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
  150. def readerWithView(view: Class[_ <: AnyRef]): ObjectReader
    Definition Classes
    ObjectMapper
  151. def rebuild[M <: ObjectMapper, B <: MapperBuilder[M, B]](): MapperBuilder[M, B]
    Definition Classes
    ObjectMapper
  152. def registeredModules(): Collection[databind.JacksonModule]
    Definition Classes
    ObjectMapper
  153. def serializationConfig(): SerializationConfig
    Definition Classes
    ObjectMapper
  154. def stringNode(text: String): JsonNode
    Definition Classes
    ObjectMapper → TreeCodec
  155. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  156. def toString(): String
    Definition Classes
    AnyRef → Any
  157. def tokenStreamFactory(): TokenStreamFactory
    Definition Classes
    ObjectMapper
  158. def treeAsTokens(n: JsonNode): JsonParser
    Definition Classes
    ObjectMapper → TreeCodec
  159. 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
  160. def treeToValue[T <: AnyRef](n: JsonNode, toValueTypeRef: TypeReference[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  161. def treeToValue[T <: AnyRef](n: JsonNode, valueType: JavaType): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  162. def treeToValue[T <: AnyRef](n: JsonNode, valueType: Class[T]): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  163. def updateValue[T](valueToUpdate: T, src: Array[Byte], offset: Int, len: Int)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  164. def updateValue[T](valueToUpdate: T, src: Array[Byte])(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  165. def updateValue[T](valueToUpdate: T, src: InputStream)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  166. def updateValue[T](valueToUpdate: T, src: Reader)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  167. def updateValue[T](valueToUpdate: T, content: String)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  168. def updateValue[T](valueToUpdate: T, src: File)(implicit arg0: JavaTypeable[T]): T
    Definition Classes
    ClassTagExtensions
  169. def updateValue[T <: AnyRef](valueToUpdate: T, overrides: AnyRef): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  170. def valueToTree[T <: JsonNode](fromValue: AnyRef): T
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  171. def version(): Version
    Definition Classes
    ObjectMapper → Versioned
  172. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  173. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  174. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  175. def writeReplace(): AnyRef
    Attributes
    protected[databind]
    Definition Classes
    ObjectMapper
  176. def writeTree(g: JsonGenerator, rootNode: JsonNode): Unit
    Definition Classes
    ObjectMapper → TreeCodec
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  177. def writeValue(w: Writer, value: AnyRef): Unit
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  178. def writeValue(out: DataOutput, value: AnyRef): Unit
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  179. def writeValue(out: OutputStream, value: AnyRef): Unit
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  180. def writeValue(path: Path, value: AnyRef): Unit
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  181. def writeValue(file: File, value: AnyRef): Unit
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  182. def writeValue(g: JsonGenerator, value: AnyRef): Unit
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  183. def writeValueAsBytes(value: AnyRef): Array[Byte]
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  184. def writeValueAsString(value: AnyRef): String
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  185. def writeValueIntoBuffer(value: AnyRef): TokenBuffer
    Definition Classes
    ObjectMapper
    Annotations
    @throws(classOf[tools.jackson.core.JacksonException])
  186. def writer(attrs: ContextAttributes): ObjectWriter
    Definition Classes
    ObjectMapper
  187. def writer(escapes: CharacterEscapes): ObjectWriter
    Definition Classes
    ObjectMapper
  188. def writer(defaultBase64: Base64Variant): ObjectWriter
    Definition Classes
    ObjectMapper
  189. def writer(schema: FormatSchema): ObjectWriter
    Definition Classes
    ObjectMapper
  190. def writer(filterProvider: FilterProvider): ObjectWriter
    Definition Classes
    ObjectMapper
  191. def writer(df: DateFormat): ObjectWriter
    Definition Classes
    ObjectMapper
  192. def writer(f: DatatypeFeature): ObjectWriter
    Definition Classes
    ObjectMapper
  193. def writer(first: SerializationFeature, other: <repeated...>[SerializationFeature]): ObjectWriter
    Definition Classes
    ObjectMapper
    Annotations
    @transient()
  194. def writer(feature: SerializationFeature): ObjectWriter
    Definition Classes
    ObjectMapper
  195. def writer(): ObjectWriter
    Definition Classes
    ObjectMapper
  196. 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
  197. def writerFor(rootType: JavaType): ObjectWriter
    Definition Classes
    ObjectMapper
  198. def writerFor(rootType: TypeReference[_ <: AnyRef]): ObjectWriter
    Definition Classes
    ObjectMapper
  199. def writerFor(rootType: Class[_ <: AnyRef]): ObjectWriter
    Definition Classes
    ObjectMapper
  200. def writerWithDefaultPrettyPrinter(): ObjectWriter
    Definition Classes
    ObjectMapper
  201. 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
  202. 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 ObjectMapper

Inherited from Serializable

Inherited from Versioned

Inherited from TreeCodec[JsonNode]

Inherited from AnyRef

Inherited from Any

Ungrouped