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 |
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 |
Returns a new matcher which returns true if either this or the given matcher return true. このmatcherと与えられたmatcherのどちらかがTrueなら、新しいTrueのmatcherを返します。 |