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