Mixin

com.fasterxml.jackson.module.scala.ClassTagExtensions$.Mixin
final class Mixin extends JsonMapper with ClassTagExtensions

Attributes

Graph
Supertypes
trait Serializable
trait Versioned
class TreeCodec
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Inherited methods

def acceptJsonFormatVisitor(x$0: Class[_ <: <FromJavaObject>], x$1: JsonFormatVisitorWrapper): Unit

Attributes

Inherited from:
ObjectMapper
def addMixIn(x$0: Class[_ <: <FromJavaObject>], x$1: Class[_ <: <FromJavaObject>]): ObjectMapper

Attributes

Inherited from:
ObjectMapper
def canDeserialize(x$0: JavaType, x$1: AtomicReference[Throwable]): Boolean

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def canSerialize(x$0: Class[_ <: <FromJavaObject>], x$1: AtomicReference[Throwable]): Boolean

Attributes

Inherited from:
ObjectMapper
def canSerialize(x$0: Class[_ <: <FromJavaObject>]): Boolean

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def coercionConfigFor(x$0: Class[_ <: <FromJavaObject>]): MutableCoercionConfig

Attributes

Inherited from:
ObjectMapper
def configOverride(x$0: Class[_ <: <FromJavaObject>]): MutableConfigOverride

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

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

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

Attributes

Inherited from:
ClassTagExtensions
def constructType(x$0: TypeReference[_ <: <FromJavaObject>]): JavaType

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def convertValue[T : JavaTypeable](fromValue: Any): T

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.

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.

Attributes

Throws:
java.lang.IllegalArgumentException

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

Inherited from:
ClassTagExtensions
def convertValue[T <: <FromJavaObject>](x$0: <FromJavaObject>, x$1: JavaType): T

Attributes

Inherited from:
ObjectMapper
def convertValue[T <: <FromJavaObject>](x$0: <FromJavaObject>, x$1: TypeReference[T]): T

Attributes

Inherited from:
ObjectMapper
def convertValue[T <: <FromJavaObject>](x$0: <FromJavaObject>, x$1: Class[T]): T

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
JsonMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def createGenerator(x$0: OutputStream): JsonGenerator

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def createParser(x$0: DataInput): JsonParser

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def createParser(x$0: InputStream): JsonParser

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def findMixInClassFor(x$0: Class[_ <: <FromJavaObject>]): Class[_ <: <FromJavaObject>]

Attributes

Inherited from:
ObjectMapper
def getDateFormat(): DateFormat

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
JsonMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def getRegisteredModuleIds(): Set[<FromJavaObject>]

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def getVisibilityChecker(): VisibilityChecker[_ <: <FromJavaObject>]

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
JsonMapper

Attributes

Inherited from:
JsonMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def readTree(x$0: URL): JsonNode

Attributes

Inherited from:
ObjectMapper
def readTree(x$0: File): JsonNode

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def readTree(x$0: String): JsonNode

Attributes

Inherited from:
ObjectMapper
def readTree(x$0: Reader): JsonNode

Attributes

Inherited from:
ObjectMapper
def readTree(x$0: InputStream): JsonNode

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def readValue[T : JavaTypeable](src: Array[Byte], offset: Int, len: Int): T

Attributes

Inherited from:
ClassTagExtensions
def readValue[T : JavaTypeable](src: Array[Byte]): T

Attributes

Inherited from:
ClassTagExtensions
def readValue[T : JavaTypeable](src: InputStream): T

Attributes

Inherited from:
ClassTagExtensions
def readValue[T : JavaTypeable](src: Reader): T

Attributes

Inherited from:
ClassTagExtensions
def readValue[T : JavaTypeable](content: String): T

Attributes

Inherited from:
ClassTagExtensions
def readValue[T : JavaTypeable](src: URL): T

Attributes

Inherited from:
ClassTagExtensions
def readValue[T : JavaTypeable](src: File): T

Attributes

Inherited from:
ClassTagExtensions

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.

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.

Attributes

Inherited from:
ClassTagExtensions
def readValue[T <: <FromJavaObject>](x$0: DataInput, x$1: JavaType): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: DataInput, x$1: Class[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: Array[Byte], x$1: Int, x$2: Int, x$3: JavaType): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: Array[Byte], x$1: JavaType): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: Array[Byte], x$1: Int, x$2: Int, x$3: TypeReference[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: Array[Byte], x$1: TypeReference[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: Array[Byte], x$1: Int, x$2: Int, x$3: Class[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: Array[Byte], x$1: Class[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: InputStream, x$1: JavaType): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: InputStream, x$1: TypeReference[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: InputStream, x$1: Class[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: Reader, x$1: JavaType): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: Reader, x$1: TypeReference[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: Reader, x$1: Class[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: String, x$1: JavaType): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: String, x$1: TypeReference[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: String, x$1: Class[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: URL, x$1: JavaType): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: URL, x$1: TypeReference[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: URL, x$1: Class[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: File, x$1: JavaType): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: File, x$1: TypeReference[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: File, x$1: Class[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: JsonParser, x$1: JavaType): T

Attributes

Inherited from:
ObjectMapper
final def readValue[T <: <FromJavaObject>](x$0: JsonParser, x$1: ResolvedType): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: JsonParser, x$1: TypeReference[T]): T

Attributes

Inherited from:
ObjectMapper
def readValue[T <: <FromJavaObject>](x$0: JsonParser, x$1: Class[T]): T

Attributes

Inherited from:
ObjectMapper

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 com.fasterxml.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.

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 com.fasterxml.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 com.fasterxml.jackson.databind.ObjectReader has more complete set of variants.

Attributes

Inherited from:
ClassTagExtensions
def readValues[T <: <FromJavaObject>](x$0: JsonParser, x$1: TypeReference[T]): MappingIterator[T]

Attributes

Inherited from:
ObjectMapper
def readValues[T <: <FromJavaObject>](x$0: JsonParser, x$1: Class[T]): MappingIterator[T]

Attributes

Inherited from:
ObjectMapper
def readValues[T <: <FromJavaObject>](x$0: JsonParser, x$1: JavaType): MappingIterator[T]

Attributes

Inherited from:
ObjectMapper
def readValues[T <: <FromJavaObject>](x$0: JsonParser, x$1: ResolvedType): MappingIterator[T]

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

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

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

Attributes

Inherited from:
ClassTagExtensions
def readerFor(x$0: TypeReference[_ <: <FromJavaObject>]): ObjectReader

Attributes

Inherited from:
ObjectMapper
def readerFor(x$0: Class[_ <: <FromJavaObject>]): ObjectReader

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def readerForArrayOf(x$0: Class[_ <: <FromJavaObject>]): ObjectReader

Attributes

Inherited from:
ObjectMapper
def readerForListOf(x$0: Class[_ <: <FromJavaObject>]): ObjectReader

Attributes

Inherited from:
ObjectMapper
def readerForMapOf(x$0: Class[_ <: <FromJavaObject>]): ObjectReader

Attributes

Inherited from:
ObjectMapper
def readerForUpdating(x$0: <FromJavaObject>): ObjectReader

Attributes

Inherited from:
ObjectMapper

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

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

Attributes

Inherited from:
ClassTagExtensions
def readerWithView(x$0: Class[_ <: <FromJavaObject>]): ObjectReader

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
JsonMapper

Attributes

Inherited from:
ObjectMapper
def registerModules(x$0: Iterable[_ <: Module]): ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def registerSubtypes(x$0: Collection[Class[_ <: <FromJavaObject>]]): Unit

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def registerSubtypes(x$0: Class[_ <: <FromJavaObject>]*): Unit

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def setDateFormat(x$0: DateFormat): ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def setLocale(x$0: Locale): ObjectMapper

Attributes

Inherited from:
ObjectMapper
def setMixIns(x$0: Map[Class[_ <: <FromJavaObject>], Class[_ <: <FromJavaObject>]]): ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def setTimeZone(x$0: TimeZone): ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def setVisibility(x$0: PropertyAccessor, x$1: Visibility): ObjectMapper

Attributes

Inherited from:
ObjectMapper
def setVisibility(x$0: VisibilityChecker[_ <: <FromJavaObject>]): ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

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);

Attributes

Inherited from:
ClassTagExtensions
def treeToValue[T <: <FromJavaObject>](x$0: TreeNode, x$1: JavaType): T

Attributes

Inherited from:
ObjectMapper
def treeToValue[T <: <FromJavaObject>](x$0: TreeNode, x$1: Class[T]): T

Attributes

Inherited from:
ObjectMapper
def updateValue[T : JavaTypeable](valueToUpdate: T, src: Array[Byte], offset: Int, len: Int): T

Attributes

Inherited from:
ClassTagExtensions
def updateValue[T : JavaTypeable](valueToUpdate: T, src: Array[Byte]): T

Attributes

Inherited from:
ClassTagExtensions
def updateValue[T : JavaTypeable](valueToUpdate: T, src: InputStream): T

Attributes

Inherited from:
ClassTagExtensions
def updateValue[T : JavaTypeable](valueToUpdate: T, src: Reader): T

Attributes

Inherited from:
ClassTagExtensions
def updateValue[T : JavaTypeable](valueToUpdate: T, content: String): T

Attributes

Inherited from:
ClassTagExtensions
def updateValue[T : JavaTypeable](valueToUpdate: T, src: URL): T

Attributes

Inherited from:
ClassTagExtensions
def updateValue[T : JavaTypeable](valueToUpdate: T, src: File): T

Attributes

Inherited from:
ClassTagExtensions
def updateValue[T <: <FromJavaObject>](x$0: T, x$1: <FromJavaObject>): T

Attributes

Inherited from:
ObjectMapper
def valueToTree[T <: JsonNode](x$0: <FromJavaObject>): T

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
JsonMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def writeValue(x$0: Writer, x$1: <FromJavaObject>): Unit

Attributes

Inherited from:
ObjectMapper
def writeValue(x$0: DataOutput, x$1: <FromJavaObject>): Unit

Attributes

Inherited from:
ObjectMapper
def writeValue(x$0: OutputStream, x$1: <FromJavaObject>): Unit

Attributes

Inherited from:
ObjectMapper
def writeValue(x$0: File, x$1: <FromJavaObject>): Unit

Attributes

Inherited from:
ObjectMapper
def writeValue(x$0: JsonGenerator, x$1: <FromJavaObject>): Unit

Attributes

Inherited from:
ObjectMapper
def writeValueAsBytes(x$0: <FromJavaObject>): Array[Byte]

Attributes

Inherited from:
ObjectMapper
def writeValueAsString(x$0: <FromJavaObject>): String

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper
def writer(x$0: DateFormat): ObjectWriter

Attributes

Inherited from:
ObjectMapper

Attributes

Inherited from:
ObjectMapper

Factory method for constructing com.fasterxml.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.

Factory method for constructing com.fasterxml.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.

Attributes

Inherited from:
ClassTagExtensions

Attributes

Inherited from:
ObjectMapper
def writerFor(x$0: TypeReference[_ <: <FromJavaObject>]): ObjectWriter

Attributes

Inherited from:
ObjectMapper
def writerFor(x$0: Class[_ <: <FromJavaObject>]): ObjectWriter

Attributes

Inherited from:
ObjectMapper

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

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

Attributes

Inherited from:
ClassTagExtensions
def writerWithView(x$0: Class[_ <: <FromJavaObject>]): ObjectWriter

Attributes

Inherited from:
ObjectMapper

Deprecated and Inherited methods

@Deprecated
final def addMixInAnnotations(x$0: Class[_ <: <FromJavaObject>], x$1: Class[_ <: <FromJavaObject>]): Unit

Attributes

Deprecated
true
Inherited from:
ObjectMapper
final def addMixin[Target : ClassTag, MixinSource : ClassTag](): ObjectMapper

Method to use for adding mix-in annotations to use for augmenting specified class or interface. All annotations from mixinSource are taken to override annotations that target (or its supertypes) has.

Method to use for adding mix-in annotations to use for augmenting specified class or interface. All annotations from mixinSource are taken to override annotations that target (or its supertypes) has.

Attributes

MixinSource

Class (or interface) whose annotations are to be "added" to target's annotations, overriding as necessary

Target

Class (or interface) whose annotations to effectively override

Deprecated
true
Inherited from:
ClassTagExtensions
@Deprecated

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated

Attributes

Deprecated
true
Inherited from:
ObjectMapper
final def findMixInClassFor[T : ClassTag]: Class[_]

Attributes

Deprecated
true
Inherited from:
ClassTagExtensions
@Deprecated
def generateJsonSchema(x$0: Class[_ <: <FromJavaObject>]): JsonSchema

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated

Attributes

Deprecated
true
Inherited from:
ObjectCodec
@Deprecated
def reader(x$0: TypeReference[_ <: <FromJavaObject>]): ObjectReader

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated
def reader(x$0: Class[_ <: <FromJavaObject>]): ObjectReader

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated
def setMixInAnnotations(x$0: Map[Class[_ <: <FromJavaObject>], Class[_ <: <FromJavaObject>]]): Unit

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated
def setVisibilityChecker(x$0: VisibilityChecker[_ <: <FromJavaObject>]): Unit

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated
def writerWithType(x$0: TypeReference[_ <: <FromJavaObject>]): ObjectWriter

Attributes

Deprecated
true
Inherited from:
ObjectMapper
@Deprecated
def writerWithType(x$0: Class[_ <: <FromJavaObject>]): ObjectWriter

Attributes

Deprecated
true
Inherited from:
ObjectMapper