Uses of Class
org.codehaus.jackson.map.ser.BeanPropertyWriter

Packages that use BeanPropertyWriter
org.codehaus.jackson.map.ser Contains implementation classes of serialization part of data binding. 
 

Uses of BeanPropertyWriter in org.codehaus.jackson.map.ser
 

Subclasses of BeanPropertyWriter in org.codehaus.jackson.map.ser
static class BeanPropertyWriter.NonDefaultField
          Property writer that outputs all property if and only if it has non-null value.
static class BeanPropertyWriter.NonDefaultMethod
          Property writer that outputs all property if and only if it has non-null value.
static class BeanPropertyWriter.NonNullField
          Property writer that outputs all property if and only if it has non-null value.
static class BeanPropertyWriter.NonNullMethod
          Property writer that outputs all property if and only if it has non-null value.
static class BeanPropertyWriter.StdField
          Basic property writer that outputs property entry independent of what value property has.
static class BeanPropertyWriter.StdMethod
          Basic property writer that outputs property entry independent of what value property has.
 

Fields in org.codehaus.jackson.map.ser declared as BeanPropertyWriter
protected  BeanPropertyWriter[] BeanSerializer._props
           
 

Methods in org.codehaus.jackson.map.ser that return BeanPropertyWriter
 BeanPropertyWriter PropertyBuilder.buildProperty(String name, JsonSerializer<Object> ser, AnnotatedField af)
          Factory method for constructor a BeanPropertyWriter that uses specified method as the accessors.
 BeanPropertyWriter PropertyBuilder.buildProperty(String name, JsonSerializer<Object> ser, AnnotatedMethod am)
          Factory method for constructor a BeanPropertyWriter that uses specified method as the accessors.
abstract  BeanPropertyWriter BeanPropertyWriter.withSerializer(JsonSerializer<Object> ser)
          Method that will construct and return a new writer that has same properties as this writer, but uses specified serializer instead of currently configured one (if any).
 BeanPropertyWriter BeanPropertyWriter.StdMethod.withSerializer(JsonSerializer<Object> ser)
           
 BeanPropertyWriter BeanPropertyWriter.NonNullMethod.withSerializer(JsonSerializer<Object> ser)
           
 BeanPropertyWriter BeanPropertyWriter.NonDefaultMethod.withSerializer(JsonSerializer<Object> ser)
           
 BeanPropertyWriter BeanPropertyWriter.StdField.withSerializer(JsonSerializer<Object> ser)
           
 BeanPropertyWriter BeanPropertyWriter.NonNullField.withSerializer(JsonSerializer<Object> ser)
           
 BeanPropertyWriter BeanPropertyWriter.NonDefaultField.withSerializer(JsonSerializer<Object> ser)
           
 

Methods in org.codehaus.jackson.map.ser that return types with arguments of type BeanPropertyWriter
protected  Collection<BeanPropertyWriter> BeanSerializerFactory.findBeanProperties(SerializationConfig config, BasicBeanDescription beanDesc)
          Method used to collect all actual serializable properties
 

Constructors in org.codehaus.jackson.map.ser with parameters of type BeanPropertyWriter
BeanSerializer(Class<?> type, BeanPropertyWriter[] props)
           
 

Constructor parameters in org.codehaus.jackson.map.ser with type arguments of type BeanPropertyWriter
BeanSerializer(Class<?> type, Collection<BeanPropertyWriter> props)