nl.topicus.jdbc.shaded.org.hamcrest.BaseMatcher 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
/* Copyright (c) 2000-2006 hamcrest.org
*/
package nl.topicus.jdbc.shaded.org.hamcrest;
/**
* BaseClass for all Matcher implementations.
*
* @see Matcher
*/
public abstract class BaseMatcher implements Matcher {
/**
* @see Matcher#_dont_implement_Matcher___instead_extend_BaseMatcher_()
*/
@Override
@Deprecated
public final void _dont_implement_Matcher___instead_extend_BaseMatcher_() {
// See Matcher interface for an explanation of this method.
}
@Override
public void describeMismatch(Object item, Description description) {
description.appendText("was ").appendValue(item);
}
@Override
public String toString() {
return StringDescription.toString(this);
}
}