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

com.github.bedrin.jdbc.sniffer.SpyWithValue Maven / Gradle / Ivy

package com.github.bedrin.jdbc.sniffer;

public final class SpyWithValue extends Spy> {

    private final V value;

    SpyWithValue(V value) {
        this.value = value;
    }

    public V getValue() {
        return value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy