MCPcopy Create free account
hub / github.com/Syncleus/aparapi / getArgumentsLetters

Method getArgumentsLetters

src/main/java/com/aparapi/Kernel.java:3795–3802  ·  view source on GitHub ↗
(Method method)

Source from the content-addressed store, hash-verified

3793 }
3794
3795 private static String getArgumentsLetters(Method method) {
3796 StringBuilder sb = new StringBuilder("(");
3797 for (Class<?> parameterClass : method.getParameterTypes()) {
3798 sb.append(toClassShortNameIfAny(parameterClass));
3799 }
3800 sb.append(")");
3801 return sb.toString();
3802 }
3803
3804 private static boolean isRelevant(Method method) {
3805 return !method.isSynthetic() && !method.isBridge();

Callers 1

toSignatureMethod · 0.95

Calls 2

toClassShortNameIfAnyMethod · 0.95
toStringMethod · 0.45

Tested by

no test coverage detected