JDI型のシグニチャ

JDI型のシグニチャ
型シグニチャ Java型
Zboolean
Bbyte
Cchar
Sshort
Iint
Jlong
Ffloat
Ddouble
L fully-qualified-class ; 完全修飾のクラス
[ type type[]
( arg-types ) ret-type メソッドの型(コンストラクタを含む)

たとえば、次のJavaメソッドには、

    long f (int n, String s, int[] arr);
次のような型のシグニチャがあります。
    (ILjava/lang/String;[I)J