Uses of Class
com.fasterxml.jackson.databind.util.NameTransformer

Packages that use NameTransformer
com.fasterxml.jackson.databind Contains basic mapper (conversion) functionality that allows for converting between regular streaming json content and Java objects (beans or Tree Model: support for both is via ObjectMapper class, as well as convenience methods included in JsonParser 
com.fasterxml.jackson.databind.deser Contains implementation classes of deserialization part of data binding. 
com.fasterxml.jackson.databind.deser.impl Contains those implementation classes of deserialization part of data binding that are not considered part of public or semi-public interfaces. 
com.fasterxml.jackson.databind.deser.std Contains public standard implementations of abstraction that Jackson uses. 
com.fasterxml.jackson.databind.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations. 
com.fasterxml.jackson.databind.ser Contains implementation classes of serialization part of data binding. 
com.fasterxml.jackson.databind.ser.impl Contains implementation classes of serialization part of data binding. 
com.fasterxml.jackson.databind.ser.std   
com.fasterxml.jackson.databind.util Utility classes for Mapper package. 
 

Uses of NameTransformer in com.fasterxml.jackson.databind
 

Methods in com.fasterxml.jackson.databind that return NameTransformer
 NameTransformer AnnotationIntrospector.findUnwrappingNameTransformer(AnnotatedMember member)
          Method called to check whether given property is marked to be "unwrapped" when being serialized (and appropriately handled in reverse direction, i.e.
 NameTransformer AnnotationIntrospector.Pair.findUnwrappingNameTransformer(AnnotatedMember member)
           
 

Methods in com.fasterxml.jackson.databind with parameters of type NameTransformer
 JsonDeserializer<T> JsonDeserializer.unwrappingDeserializer(NameTransformer unwrapper)
          Method that will return deserializer instance that is able to handle "unwrapped" value instances If no unwrapped instance can be constructed, will simply return this object as-is.
 JsonSerializer<T> JsonSerializer.unwrappingSerializer(NameTransformer unwrapper)
          Method that will return serializer instance that produces "unwrapped" serialization, if applicable for type being serialized (which is the case for some serializers that produce JSON Objects as output).
 

Uses of NameTransformer in com.fasterxml.jackson.databind.deser
 

Methods in com.fasterxml.jackson.databind.deser with parameters of type NameTransformer
 JsonDeserializer<Object> BuilderBasedDeserializer.unwrappingDeserializer(NameTransformer unwrapper)
           
abstract  JsonDeserializer<Object> BeanDeserializerBase.unwrappingDeserializer(NameTransformer unwrapper)
           
 JsonDeserializer<Object> BeanDeserializer.unwrappingDeserializer(NameTransformer unwrapper)
           
 

Constructors in com.fasterxml.jackson.databind.deser with parameters of type NameTransformer
BeanDeserializer(BeanDeserializerBase src, NameTransformer unwrapper)
           
BeanDeserializerBase(BeanDeserializerBase src, NameTransformer unwrapper)
           
BuilderBasedDeserializer(BuilderBasedDeserializer src, NameTransformer unwrapper)
           
 

Uses of NameTransformer in com.fasterxml.jackson.databind.deser.impl
 

Methods in com.fasterxml.jackson.databind.deser.impl with parameters of type NameTransformer
 void UnwrappedPropertyHandler.renameAll(NameTransformer transformer)
           
 BeanPropertyMap BeanPropertyMap.renameAll(NameTransformer transformer)
          Factory method for constructing a map where all entries use given prefix
 

Uses of NameTransformer in com.fasterxml.jackson.databind.deser.std
 

Methods in com.fasterxml.jackson.databind.deser.std with parameters of type NameTransformer
 JsonDeserializer<Object> ThrowableDeserializer.unwrappingDeserializer(NameTransformer unwrapper)
           
 

Constructors in com.fasterxml.jackson.databind.deser.std with parameters of type NameTransformer
ThrowableDeserializer(BeanDeserializer src, NameTransformer unwrapper)
          Alternative constructor used when creating "unwrapping" deserializers
 

Uses of NameTransformer in com.fasterxml.jackson.databind.introspect
 

Methods in com.fasterxml.jackson.databind.introspect that return NameTransformer
 NameTransformer JacksonAnnotationIntrospector.findUnwrappingNameTransformer(AnnotatedMember member)
           
 

Uses of NameTransformer in com.fasterxml.jackson.databind.ser
 

Methods in com.fasterxml.jackson.databind.ser with parameters of type NameTransformer
 BeanPropertyWriter BeanPropertyWriter.rename(NameTransformer transformer)
           
 JsonSerializer<Object> BeanSerializer.unwrappingSerializer(NameTransformer unwrapper)
           
 BeanPropertyWriter BeanPropertyWriter.unwrappingWriter(NameTransformer unwrapper)
          Method called create an instance that handles details of unwrapping contained value.
 

Uses of NameTransformer in com.fasterxml.jackson.databind.ser.impl
 

Fields in com.fasterxml.jackson.databind.ser.impl declared as NameTransformer
protected  NameTransformer UnwrappingBeanSerializer._nameTransformer
          Transformer used to add prefix and/or suffix for properties of unwrapped POJO.
protected  NameTransformer UnwrappingBeanPropertyWriter._nameTransformer
          Transformer used to add prefix and/or suffix for properties of unwrapped POJO.
 

Methods in com.fasterxml.jackson.databind.ser.impl with parameters of type NameTransformer
 UnwrappingBeanPropertyWriter UnwrappingBeanPropertyWriter.rename(NameTransformer transformer)
           
 JsonSerializer<Object> UnwrappingBeanSerializer.unwrappingSerializer(NameTransformer transformer)
           
 

Constructors in com.fasterxml.jackson.databind.ser.impl with parameters of type NameTransformer
UnwrappingBeanPropertyWriter(BeanPropertyWriter base, NameTransformer unwrapper)
           
UnwrappingBeanSerializer(BeanSerializerBase src, NameTransformer transformer)
          Constructor used for creating unwrapping instance of a standard BeanSerializer
 

Uses of NameTransformer in com.fasterxml.jackson.databind.ser.std
 

Constructors in com.fasterxml.jackson.databind.ser.std with parameters of type NameTransformer
BeanSerializerBase(BeanSerializerBase src, NameTransformer unwrapper)
          Copy-constructor that will also rename properties with given prefix (if it's non-empty)
 

Uses of NameTransformer in com.fasterxml.jackson.databind.util
 

Subclasses of NameTransformer in com.fasterxml.jackson.databind.util
static class NameTransformer.Chained
           
 

Fields in com.fasterxml.jackson.databind.util declared as NameTransformer
protected  NameTransformer NameTransformer.Chained._t1
           
protected  NameTransformer NameTransformer.Chained._t2
           
static NameTransformer NameTransformer.NOP
          Singleton "no-operation" transformer which simply returns given name as is.
 

Methods in com.fasterxml.jackson.databind.util that return NameTransformer
static NameTransformer NameTransformer.chainedTransformer(NameTransformer t1, NameTransformer t2)
          Method that constructs transformer that applies given transformers as a sequence; essentially combines separate transform operations into one logical transformation.
static NameTransformer NameTransformer.simpleTransformer(String prefix, String suffix)
          Factory method for constructing a simple transformer based on prefix and/or suffix.
 

Methods in com.fasterxml.jackson.databind.util with parameters of type NameTransformer
static NameTransformer NameTransformer.chainedTransformer(NameTransformer t1, NameTransformer t2)
          Method that constructs transformer that applies given transformers as a sequence; essentially combines separate transform operations into one logical transformation.
 

Constructors in com.fasterxml.jackson.databind.util with parameters of type NameTransformer
NameTransformer.Chained(NameTransformer t1, NameTransformer t2)
           
 



Copyright © 2012 fasterxml.com. All Rights Reserved.