Package org.sonar.java.matcher
Interface TypeCriteria
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface TypeCriteria extends Predicate<Type>
-
-
Method Summary
Static Methods Modifier and Type Method Description static TypeCriteriaanyType()static TypeCriteriais(String fullyQualifiedName)static TypeCriteriasubtypeOf(String fullyQualifiedName)
-
-
-
Method Detail
-
subtypeOf
static TypeCriteria subtypeOf(String fullyQualifiedName)
-
is
static TypeCriteria is(String fullyQualifiedName)
-
anyType
static TypeCriteria anyType()
-
-