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

nl.topicus.jdbc.shaded.org.hamcrest.internal.SelfDescribingValue Maven / Gradle / Ivy

package nl.topicus.jdbc.shaded.org.hamcrest.internal;

import nl.topicus.jdbc.shaded.org.hamcrest.Description;
import nl.topicus.jdbc.shaded.org.hamcrest.SelfDescribing;

public class SelfDescribingValue implements SelfDescribing {
    private T value;
    
    public SelfDescribingValue(T value) {
        this.value = value;
    }

    @Override
    public void describeTo(Description description) {
        description.appendValue(value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy