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

io.protostuff.generator.PropertyProvider Maven / Gradle / Ivy

There is a newer version: 3.1.40
Show newest version
package io.protostuff.generator;

import java.util.function.Function;

/**
 * Custom property provider for proto tree nodes.
 *
 * @author Kostiantyn Shchepanovskyi
 */
public interface PropertyProvider {

    boolean hasProperty(String propertyName);

    Object getProperty(Object object, String propertyName);

    void register(String property, Function computable);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy