Package com.github.beothorn.agent.parser
Class ClassAndMethodMatcher
- java.lang.Object
-
- com.github.beothorn.agent.parser.ClassAndMethodMatcher
-
public class ClassAndMethodMatcher extends java.lang.ObjectA pair of two matchers, one for class and one for the function. Example: for the expression (ClassA||ClassB)#(fA||fB) The matcher for classes is ClassA||ClassB and the matcher for functions that match the classes is fA||fB Matching entries would be: ClassA#fA ClassA#fB ClassB#fA ClassB#fB
-
-
Field Summary
Fields Modifier and Type Field Description net.bytebuddy.matcher.ElementMatcher.Junction<net.bytebuddy.description.NamedElement>classMatchernet.bytebuddy.matcher.ElementMatcher.Junction<net.bytebuddy.description.method.MethodDescription>methodMatcher
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ClassAndMethodMatchermatcher(net.bytebuddy.matcher.ElementMatcher.Junction<net.bytebuddy.description.NamedElement> classMatcher, net.bytebuddy.matcher.ElementMatcher.Junction<net.bytebuddy.description.method.MethodDescription> methodDescription)java.lang.StringtoString()
-
-
-
Method Detail
-
matcher
public static ClassAndMethodMatcher matcher(net.bytebuddy.matcher.ElementMatcher.Junction<net.bytebuddy.description.NamedElement> classMatcher, net.bytebuddy.matcher.ElementMatcher.Junction<net.bytebuddy.description.method.MethodDescription> methodDescription)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-