Uses of Interface
java.lang.classfile.MethodSignature
Packages that use MethodSignature
Package
Description
Provides classfile parsing, generation, and transformation library.
Provides interfaces describing
class
file attributes for the java.lang.classfile
library.-
Uses of MethodSignature in java.lang.classfile
Methods in java.lang.classfile that return MethodSignatureModifier and TypeMethodDescriptionstatic MethodSignature
Returns a method signature with no type parameter or exception type.static MethodSignature
MethodSignature.of
(MethodTypeDesc methodDescriptor) Returns a method signature for a raw method descriptor.static MethodSignature
MethodSignature.of
(List<Signature.TypeParam> typeParameters, List<Signature.ThrowableSig> exceptions, Signature result, Signature... arguments) Returns a method signature.static MethodSignature
Parses a raw method signature string into aMethodSignature
. -
Uses of MethodSignature in java.lang.classfile.attribute
Methods in java.lang.classfile.attribute that return MethodSignatureModifier and TypeMethodDescriptiondefault MethodSignature
SignatureAttribute.asMethodSignature()
Parse the signature string as a method signature.Methods in java.lang.classfile.attribute with parameters of type MethodSignatureModifier and TypeMethodDescriptionstatic SignatureAttribute
SignatureAttribute.of
(MethodSignature methodSignature) Returns aSignature
attribute for a method.