public final class Signature extends Object
| Modifier and Type | Method and Description |
|---|---|
static String |
toString(org.objectweb.asm.tree.MethodNode methodNode)
Converts an ASM method node into strings like
meth(java.lang.String, java.util.Map)}
<T extends java.io.IOException> meth(T, double, java.lang.List<T>)
Notice that the result includes neither the return type nor the accessibility.
|
static String |
toString(String className,
String classSignature)
Converts a class descriptor / signature into strings like
List<T extends java.lang.Exception>
Notice that the result does not include the accessibility.
|
static String |
toString(String methodName,
String methodDescriptor,
String methodSignature)
Converts a method descriptor / signature into strings like
meth(java.lang.String, java.util.Map)
<T extends java.io.IOException>meth(T, double, java.lang.List<T>)
Notice that the result includes neither the return type nor the accessibility.
|
public static String toString(String className, @Nullable String classSignature)
List<T extends java.lang.Exception>Notice that the result does not include the accessibility.
public static String toString(org.objectweb.asm.tree.MethodNode methodNode)
meth(java.lang.String, java.util.Map)} <T extends java.io.IOException> meth(T, double, java.lang.List<T>)Notice that the result includes neither the return type nor the accessibility.
public static String toString(String methodName, String methodDescriptor, @Nullable String methodSignature)
meth(java.lang.String, java.util.Map) <T extends java.io.IOException>meth(T, double, java.lang.List<T>)Notice that the result includes neither the return type nor the accessibility.
Copyright © 2016 Arno Unkrig. All rights reserved.