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

org.sfm.reflect.impl.NullGetter Maven / Gradle / Ivy

package org.sfm.reflect.impl;


import org.sfm.reflect.Getter;

public class NullGetter implements Getter {
    @Override
    public String toString() {
        return "NullGetter{}";
    }

    @Override
    public P get(T target) throws Exception {
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy