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

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

There is a newer version: 8.0.0-RC1
Show newest version
package net.hamnaberg.json.codec.reflection;


import java.util.Optional;

public interface Param {
    Optional get(Object value);

    String getName();

    Class getType();
}