レベルエンター山本大のブログ

面白いプログラミング教育を若い人たちに

BLOCKVROCKリファレンス目次はこちら

Guice API翻訳 ■com.google.inject.matcher.Matcherインターフェイス

Interface Matcher

既知の実装クラス
AbstractMatcher


public interface Matcher<T>

Returns true or false for a given input.
与えられた入力に対してTrueまたはFalseを返します。

Method Summary
Matcher and(Matcher other) Returns a new matcher which returns true if both this and the given matcher return true.
このmatcherと与えられたmatcherの両方がTrueなら、新しいTrueのmatcherを返します。
boolean matches(T t) Returns true if this matches t, false otherwise.
このmatcher がGenerics型引数のTと一致するならTrueを返します。ちがうならFalseをかえします。
Matcher or(Matcher other) Returns a new matcher which returns true if either this or the given matcher return true.
このmatcherと与えられたmatcherのどちらかがTrueなら、新しいTrueのmatcherを返します。