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

net.hamnaberg.json.codec.reflection.Param Maven / Gradle / Ivy

package net.hamnaberg.json.codec.reflection;

import io.vavr.control.Option;

public interface Param {
    Option get(Object value);

    String getName();

    Class getType();
}