Uses of Interface
io.smallrye.classfile.Signature
Packages that use Signature
Package
Description
Provides classfile parsing, generation, and transformation library.
Provides interfaces describing
class file attributes for the io.smallrye.classfile library.Provides interfaces describing code instructions for the
io.smallrye.classfile library.-
Uses of Signature in io.smallrye.classfile
Subinterfaces of Signature in io.smallrye.classfileModifier and TypeInterfaceDescriptionstatic interfaceModels the signature of an array type.static interfaceModels the signature of a primitive type (JLS ) or void.static interfaceModels the signature of a possibly-parameterized class or interface type.static interfaceModels the signature of a reference type, which may be a class, interface, type variable, or array type.static interfaceMarker interface for a signature for a throwable type.static interfaceModels the signature of a type variable.Methods in io.smallrye.classfile that return SignatureModifier and TypeMethodDescriptionSignature.ArrayTypeSig.componentSignature()Returns the signature of the component type.static SignatureReturns a Java type signature from a field descriptor.static SignatureParses a Java type signature from a raw string.MethodSignature.result()Returns the signatures of the return value of this method.Methods in io.smallrye.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 io.smallrye.classfile with parameters of type SignatureModifier and TypeMethodDescriptiondefault CodeBuilderCodeBuilder.localVariableType(int slot, String name, Signature signature, Label startScope, Label endScope) Declares a local variable type entry.static MethodSignatureReturns a method signature with no type parameter or exception type.static MethodSignatureMethodSignature.of(List<Signature.TypeParam> typeParameters, List<Signature.ThrowableSig> exceptions, Signature result, Signature... arguments) Returns a method signature.static Signature.ArrayTypeSigReturns a signature for an array type.static Signature.ArrayTypeSigReturns an array type with the given component type. -
Uses of Signature in io.smallrye.classfile.attribute
Methods in io.smallrye.classfile.attribute that return SignatureModifier and TypeMethodDescriptiondefault SignatureSignatureAttribute.asTypeSignature()Parses the signature string as a Java type signature.Methods in io.smallrye.classfile.attribute with parameters of type SignatureModifier and TypeMethodDescriptionstatic SignatureAttributeReturns aSignatureattribute for a field or a record component. -
Uses of Signature in io.smallrye.classfile.instruction
Methods in io.smallrye.classfile.instruction that return SignatureModifier and TypeMethodDescriptiondefault SignatureLocalVariableType.signatureSymbol()Returns the local variable generic signature.Methods in io.smallrye.classfile.instruction with parameters of type Signature