Interface MethodMatchers.TypeBuilder
-
- All Known Implementing Classes:
MethodMatchersBuilder
- Enclosing interface:
- MethodMatchers
public static interface MethodMatchers.TypeBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MethodMatchers.NameBuilderofAnyType()Match any type.MethodMatchers.NameBuilderofSubTypes(String... fullyQualifiedTypeNames)Match any of the type and sub-type of the fully qualified names.MethodMatchers.NameBuilderofType(Predicate<Type> typePredicate)Match a type matching a predicate.MethodMatchers.NameBuilderofTypes(String... fullyQualifiedTypeNames)Match any of the fully qualified name types, but not the subtype.
-
-
-
Method Detail
-
ofSubTypes
MethodMatchers.NameBuilder ofSubTypes(String... fullyQualifiedTypeNames)
Match any of the type and sub-type of the fully qualified names.
-
ofAnyType
MethodMatchers.NameBuilder ofAnyType()
Match any type.
-
ofTypes
MethodMatchers.NameBuilder ofTypes(String... fullyQualifiedTypeNames)
Match any of the fully qualified name types, but not the subtype.
-
ofType
MethodMatchers.NameBuilder ofType(Predicate<Type> typePredicate)
Match a type matching a predicate.
-
-