Uses of Interface
org.sonar.plugins.java.api.semantic.MethodMatchers.NameBuilder
-
Packages that use MethodMatchers.NameBuilder Package Description org.sonar.java.matcher org.sonar.plugins.java.api.semantic Provides interfaces to represent Java source code as syntax tree. -
-
Uses of MethodMatchers.NameBuilder in org.sonar.java.matcher
Classes in org.sonar.java.matcher that implement MethodMatchers.NameBuilder Modifier and Type Class Description class
MethodMatchersBuilder
Methods in org.sonar.java.matcher that return MethodMatchers.NameBuilder Modifier and Type Method Description MethodMatchers.NameBuilder
MethodMatchersBuilder. ofAnyType()
MethodMatchers.NameBuilder
MethodMatchersBuilder. ofSubTypes(String... fullyQualifiedTypeNames)
MethodMatchers.NameBuilder
MethodMatchersBuilder. ofType(Predicate<Type> typePredicate)
MethodMatchers.NameBuilder
MethodMatchersBuilder. ofTypes(String... fullyQualifiedTypeNames)
-
Uses of MethodMatchers.NameBuilder in org.sonar.plugins.java.api.semantic
Methods in org.sonar.plugins.java.api.semantic that return MethodMatchers.NameBuilder Modifier and Type Method Description MethodMatchers.NameBuilder
MethodMatchers.TypeBuilder. ofAnyType()
Match any type.MethodMatchers.NameBuilder
MethodMatchers.TypeBuilder. ofSubTypes(String... fullyQualifiedTypeNames)
Match any of the type and sub-type of the fully qualified names.MethodMatchers.NameBuilder
MethodMatchers.TypeBuilder. ofType(Predicate<Type> typePredicate)
Match a type matching a predicate.MethodMatchers.NameBuilder
MethodMatchers.TypeBuilder. ofTypes(String... fullyQualifiedTypeNames)
Match any of the fully qualified name types, but not the subtype.
-