author | jjg |
Tue, 08 Aug 2017 12:01:02 -0700 | |
changeset 46140 | 3abb2959292f |
parent 45130 | 469dceb426cc |
permissions | -rw-r--r-- |
45130
469dceb426cc
8179631: Fix Html5 errors in java.management, jdk.management, jdk.jdi and jdk.attach
ksrini
parents:
45001
diff
changeset
|
1 |
<!DOCTYPE HTML> |
46140 | 2 |
<HTML lang="EN"> |
2 | 3 |
<HEAD> |
4 |
<TITLE> |
|
5 |
JDI Type Signatures |
|
6 |
</TITLE> |
|
46140 | 7 |
<META charset="UTF-8"> |
8 |
<STYLE type="text/css"> |
|
9 |
tbody th { font-weight: normal } |
|
10 |
</STYLE> |
|
2 | 11 |
</HEAD> |
45001 | 12 |
<BODY style="background-color:white"> |
2 | 13 |
<dl><dd> |
14 |
<Table Border="0"> |
|
46140 | 15 |
<caption style="font-size:x-large"><b>JDI Type Signatures</b></caption> |
16 |
<thead> |
|
17 |
<tr><th scope="col">Type Signature |
|
18 |
<th scope="col">Java Type |
|
19 |
</thead> |
|
20 |
<tbody> |
|
21 |
<tr><th scope="row">Z<td>boolean |
|
22 |
<tr><th scope="row">B<td>byte |
|
23 |
<tr><th scope="row">C<td>char |
|
24 |
<tr><th scope="row">S<td>short |
|
25 |
<tr><th scope="row">I<td>int |
|
26 |
<tr><th scope="row">J<td>long |
|
27 |
<tr><th scope="row">F<td>float |
|
28 |
<tr><th scope="row">D<td>double |
|
29 |
<tr><th scope="row"><strong>L</strong> <em>fully-qualified-class</em> |
|
2 | 30 |
<strong>;</strong> |
31 |
<td>fully-qualified-class |
|
46140 | 32 |
<tr><th scope="row"><strong>[</strong> <em>type |
2 | 33 |
</em> |
34 |
<td><em>type</em>[] |
|
46140 | 35 |
<tr><th scope="row"> |
2 | 36 |
<strong>(</strong> <em>arg-types </em><strong>)</strong> <em>ret-type |
37 |
</em> |
|
38 |
<td>method type (including constructors) |
|
46140 | 39 |
</tbody> |
2 | 40 |
</Table> |
41 |
</dd></dl> |
|
42 |
<p>For example, the Java method: |
|
30037 | 43 |
<pre> long f (int n, String s, int[] arr); |
2 | 44 |
</pre>has the following type signature: |
30037 | 45 |
<pre> (ILjava/lang/String;[I)J |
2 | 46 |
</pre> |
47 |
</BODY> |
|
48 |
</HTML> |