Java 类com.fasterxml.jackson.databind.ser.impl.UnwrappingBeanPropertyWriter 实例源码

项目:QuizUpWinner    文件:BeanPropertyWriter.java   
public BeanPropertyWriter unwrappingWriter(NameTransformer paramNameTransformer)
{
  return new UnwrappingBeanPropertyWriter(this, paramNameTransformer);
}
项目:sosoapi-base    文件:BeanPropertyWriter.java   
/**
 * Method called create an instance that handles details of unwrapping
 * contained value.
 */
public BeanPropertyWriter unwrappingWriter(NameTransformer unwrapper) {
    return new UnwrappingBeanPropertyWriter(this, unwrapper);
}
项目:joyplus-tv    文件:BeanPropertyWriter.java   
/**
 * Method called create an instance that handles details of unwrapping
 * contained value.
 */
public BeanPropertyWriter unwrappingWriter(NameTransformer unwrapper) {
    return new UnwrappingBeanPropertyWriter(this, unwrapper);
}