All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.jackson.databind.util.Setter Maven / Gradle / Ivy

There is a newer version: 2.17.0
Show newest version
package com.fasterxml.jackson.databind.util;

/**
 * Mix-in interface exposed by things that expose a single
 * property whose value can be set.
 * 
 * @since 2.0
 */
public interface Setter
{
    public void setValue(Object pojo, Object value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy