Package | Description |
---|---|
javassist.bytecode |
Bytecode-level API.
|
Modifier and Type | Class and Description |
---|---|
static class |
SignatureAttribute.ArrayType
Array types.
|
static class |
SignatureAttribute.BaseType
Primitive types.
|
static class |
SignatureAttribute.ClassType
Class types.
|
static class |
SignatureAttribute.NestedClassType
Nested class types.
|
static class |
SignatureAttribute.ObjectType
Class types, array types, and type variables.
|
static class |
SignatureAttribute.TypeVariable
Type variables.
|
Modifier and Type | Field and Description |
---|---|
(package private) SignatureAttribute.Type |
SignatureAttribute.ArrayType.componentType |
(package private) SignatureAttribute.Type[] |
SignatureAttribute.MethodSignature.params |
(package private) SignatureAttribute.Type |
SignatureAttribute.MethodSignature.retType |
Modifier and Type | Method and Description |
---|---|
SignatureAttribute.Type |
SignatureAttribute.ArrayType.getComponentType()
Returns the component type.
|
SignatureAttribute.Type[] |
SignatureAttribute.MethodSignature.getParameterTypes()
Returns the types of the formal parameters.
|
SignatureAttribute.Type |
SignatureAttribute.MethodSignature.getReturnType()
Returns the type of the returned value.
|
private static SignatureAttribute.Type |
SignatureAttribute.parseType(java.lang.String sig,
SignatureAttribute.Cursor c) |
static SignatureAttribute.Type |
SignatureAttribute.toTypeSignature(java.lang.String sig)
Parses the given signature string as a type signature.
|
Modifier and Type | Method and Description |
---|---|
(package private) static void |
SignatureAttribute.Type.toString(java.lang.StringBuffer sbuf,
SignatureAttribute.Type[] ts) |
Constructor and Description |
---|
ArrayType(int d,
SignatureAttribute.Type comp)
Constructs an
ArrayType . |
MethodSignature(SignatureAttribute.TypeParameter[] tp,
SignatureAttribute.Type[] params,
SignatureAttribute.Type ret,
SignatureAttribute.ObjectType[] ex)
Constructs a method type signature.
|
MethodSignature(SignatureAttribute.TypeParameter[] tp,
SignatureAttribute.Type[] params,
SignatureAttribute.Type ret,
SignatureAttribute.ObjectType[] ex)
Constructs a method type signature.
|