- All Superinterfaces:
Signature,Signature.RefTypeSig,Signature.ThrowableSig
- Enclosing interface:
Signature
public static sealed interface Signature.TypeVarSig
extends Signature.RefTypeSig, Signature.ThrowableSig
Models the signature of a type variable. A type variable is introduced
by a type parameter declaration.
- Since:
- 24
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.smallrye.classfile.Signature
Signature.ArrayTypeSig, Signature.BaseTypeSig, Signature.ClassTypeSig, Signature.RefTypeSig, Signature.ThrowableSig, Signature.TypeArg, Signature.TypeParam, Signature.TypeVarSig -
Method Summary
Modifier and TypeMethodDescriptionReturns the name of the type variable.static Signature.TypeVarSigReturns a signature for a type variable.Methods inherited from interface io.smallrye.classfile.Signature
signatureString
-
Method Details
-
identifier
String identifier()Returns the name of the type variable.- Returns:
- the name of the type variable
-
of
Returns a signature for a type variable.- Parameters:
identifier- the name of the type variable- Returns:
- a signature for a type variable
- Throws:
IllegalArgumentException- if the name cannot be denoted
-