Package javassist.bytecode
Class SignatureAttribute.Type
- java.lang.Object
-
- javassist.bytecode.SignatureAttribute.Type
-
- Direct Known Subclasses:
SignatureAttribute.BaseType
,SignatureAttribute.ObjectType
- Enclosing class:
- SignatureAttribute
public abstract static class SignatureAttribute.Type extends java.lang.Object
Primitive types and object types.
-
-
Constructor Summary
Constructors Constructor Description Type()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description (package private) abstract void
encode(java.lang.StringBuffer sb)
java.lang.String
jvmTypeName()
Returns the type name in the JVM internal style.(package private) static void
toString(java.lang.StringBuffer sbuf, SignatureAttribute.Type[] ts)
-
-
-
Method Detail
-
encode
abstract void encode(java.lang.StringBuffer sb)
-
toString
static void toString(java.lang.StringBuffer sbuf, SignatureAttribute.Type[] ts)
-
jvmTypeName
public java.lang.String jvmTypeName()
Returns the type name in the JVM internal style. For example, if the type is a nested classfoo.Bar.Baz
, thenfoo.Bar$Baz
is returned.
-
-