Package javassist.bytecode
Class SignatureAttribute.TypeVariable
- java.lang.Object
-
- javassist.bytecode.SignatureAttribute.Type
-
- javassist.bytecode.SignatureAttribute.ObjectType
-
- javassist.bytecode.SignatureAttribute.TypeVariable
-
- Enclosing class:
- SignatureAttribute
public static class SignatureAttribute.TypeVariable extends SignatureAttribute.ObjectType
Type variables.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.lang.String
name
-
Constructor Summary
Constructors Constructor Description TypeVariable(java.lang.String name)
Constructs aTypeVariable
.TypeVariable(java.lang.String sig, int begin, int end)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) void
encode(java.lang.StringBuffer sb)
java.lang.String
getName()
Returns the variable name.java.lang.String
toString()
Returns the string representation.-
Methods inherited from class javassist.bytecode.SignatureAttribute.ObjectType
encode
-
Methods inherited from class javassist.bytecode.SignatureAttribute.Type
jvmTypeName, toString
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Returns the variable name.
-
toString
public java.lang.String toString()
Returns the string representation.- Overrides:
toString
in classjava.lang.Object
-
encode
void encode(java.lang.StringBuffer sb)
- Specified by:
encode
in classSignatureAttribute.Type
-
-