nl.topicus.jdbc.shaded.org.hamcrest.internal.SelfDescribingValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spanner-jdbc Show documentation
Show all versions of spanner-jdbc Show documentation
JDBC Driver for Google Cloud Spanner
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);
}
}