Class MethodUtil
java.lang.Object
io.quarkiverse.langchain4j.deployment.MethodUtil
-
Method Summary
Modifier and TypeMethodDescriptionstatic booleanmethodSignaturesMatch(org.jboss.jandex.MethodInfo a, org.jboss.jandex.MethodInfo b) Checks if the signatures of two methods matchesstatic Stringsignature(org.jboss.jandex.MethodInfo method) Returns the signature of a method
-
Method Details
-
signature
Returns the signature of a method- Parameters:
method- the method to get the signature from- Returns:
- the signature of the method
-
methodSignaturesMatch
public static boolean methodSignaturesMatch(org.jboss.jandex.MethodInfo a, org.jboss.jandex.MethodInfo b) Checks if the signatures of two methods matches- Parameters:
a- the first method to checkb- the second method to compare- Returns:
- true if both method signatures match, false otherwise
-