Class ObjectIdValueProperty

    • Method Detail

      • withName

        public SettableBeanProperty withName​(PropertyName newName)
        Description copied from class: SettableBeanProperty
        Fluent factory method for constructing and returning a new instance with specified property name. Note that this method should NOT change configuration of this instance.
        Specified by:
        withName in class SettableBeanProperty
        Parameters:
        newName - Name to use for the new instance.
        Returns:
        Newly constructed instance, if property name differs from the one used for this instance; or 'this' if not.
      • withValueDeserializer

        public SettableBeanProperty withValueDeserializer​(JsonDeserializer<?> deser)
        Description copied from class: SettableBeanProperty
        Fluent factory method for constructing and returning a new instance with specified value deserializer. Note that this method should NOT change configuration of this instance.
        Specified by:
        withValueDeserializer in class SettableBeanProperty
        Parameters:
        deser - Deserializer to assign to the new property instance
        Returns:
        Newly constructed instance, if value deserializer differs from the one used for this instance; or 'this' if not.
      • getAnnotation

        public <A extends java.lang.annotation.Annotation> A getAnnotation​(java.lang.Class<A> acls)
        Description copied from interface: BeanProperty
        Method for finding annotation associated with this property; meaning annotation associated with one of entities used to access property.

        Note that this method should only be called for custom annotations; access to standard Jackson annotations (or ones supported by alternate AnnotationIntrospectors) should be accessed through AnnotationIntrospector.

        Specified by:
        getAnnotation in interface BeanProperty
        Specified by:
        getAnnotation in class SettableBeanProperty
      • deserializeAndSet

        public void deserializeAndSet​(JsonParser p,
                                      DeserializationContext ctxt,
                                      java.lang.Object instance)
                               throws java.io.IOException
        Description copied from class: SettableBeanProperty
        Method called to deserialize appropriate value, given parser (and context), and set it using appropriate mechanism. Pre-condition is that passed parser must point to the first token that should be consumed to produce the value (the only value for scalars, multiple for Objects and Arrays).
        Specified by:
        deserializeAndSet in class SettableBeanProperty
        Throws:
        java.io.IOException
      • set

        public void set​(java.lang.Object instance,
                        java.lang.Object value)
                 throws java.io.IOException
        Description copied from class: SettableBeanProperty
        Method called to assign given value to this property, on specified Object.

        Note: this is an optional operation, not supported by all implementations, creator-backed properties for example do not support this method.

        Specified by:
        set in class SettableBeanProperty
        Throws:
        java.io.IOException
      • setAndReturn

        public java.lang.Object setAndReturn​(java.lang.Object instance,
                                             java.lang.Object value)
                                      throws java.io.IOException
        Description copied from class: SettableBeanProperty
        Method called to assign given value to this property, on specified Object, and return whatever delegating accessor returned (if anything)

        Note: this is an optional operation, not supported by all implementations, creator-backed properties for example do not support this method.

        Specified by:
        setAndReturn in class SettableBeanProperty
        Throws:
        java.io.IOException