Uses of Interface
java.lang.classfile.Signature
Packages that use Signature
Package
Description
Provides classfile parsing, generation, and transformation library.
Provides interfaces describing
class
file attributes for the java.lang.classfile
library.Provides interfaces describing code instructions for the
java.lang.classfile
library.-
Uses of Signature in java.lang.classfile
Subinterfaces of Signature in java.lang.classfileModifier and TypeInterfaceDescriptionstatic interface
Models the signature of an array type.static interface
Models the signature of a primitive type (JLS 4.2) or void.static interface
Models the signature of a possibly-parameterized class or interface type.static interface
Models the signature of a reference type, which may be a class, interface, type variable, or array type.static interface
Marker interface for a signature for a throwable type.static interface
Models the signature of a type variable.Methods in java.lang.classfile that return SignatureModifier and TypeMethodDescriptionSignature.ArrayTypeSig.componentSignature()
Returns the signature of the component type.static Signature
Returns a Java type signature from a field descriptor.static Signature
Parses a Java type signature from a raw string.MethodSignature.result()
Returns the signatures of the return value of this method.Methods in java.lang.classfile that return types with arguments of type SignatureModifier and TypeMethodDescriptionMethodSignature.arguments()
Returns the signatures of the parameters of this method or constructor, may be empty.Methods in java.lang.classfile with parameters of type SignatureModifier and TypeMethodDescriptiondefault CodeBuilder
CodeBuilder.localVariableType
(int slot, String name, Signature signature, Label startScope, Label endScope) Declares a local variable type entry.static MethodSignature
Returns a method signature with no type parameter or exception type.static MethodSignature
MethodSignature.of
(List<Signature.TypeParam> typeParameters, List<Signature.ThrowableSig> exceptions, Signature result, Signature... arguments) Returns a method signature.static Signature.ArrayTypeSig
Returns a signature for an array type.static Signature.ArrayTypeSig
Returns an array type with the given component type. -
Uses of Signature in java.lang.classfile.attribute
Methods in java.lang.classfile.attribute that return SignatureModifier and TypeMethodDescriptiondefault Signature
SignatureAttribute.asTypeSignature()
Parses the signature string as a Java type signature.Methods in java.lang.classfile.attribute with parameters of type SignatureModifier and TypeMethodDescriptionstatic SignatureAttribute
Returns aSignature
attribute for a field or a record component. -
Uses of Signature in java.lang.classfile.instruction
Methods in java.lang.classfile.instruction that return SignatureModifier and TypeMethodDescriptiondefault Signature
LocalVariableType.signatureSymbol()
Returns the local variable generic signature.Methods in java.lang.classfile.instruction with parameters of type Signature