src/jdk.jdi/share/classes/com/sun/jdi/doc-files/signature.html
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 46140 jdk/src/jdk.jdi/share/classes/com/sun/jdi/doc-files/signature.html@3abb2959292f
child 51253 35ca229c7f6f
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse

<!DOCTYPE HTML>
<HTML lang="EN">
<HEAD>
<TITLE>
JDI Type Signatures
</TITLE>
<META charset="UTF-8">
<STYLE type="text/css">
tbody th { font-weight: normal }
</STYLE>
</HEAD>
<BODY style="background-color:white">
<dl><dd>
<Table Border="0">
<caption style="font-size:x-large"><b>JDI Type Signatures</b></caption>
<thead>
<tr><th scope="col">Type Signature
<th scope="col">Java Type
</thead>
<tbody>
<tr><th scope="row">Z<td>boolean
<tr><th scope="row">B<td>byte
<tr><th scope="row">C<td>char
<tr><th scope="row">S<td>short
<tr><th scope="row">I<td>int
<tr><th scope="row">J<td>long
<tr><th scope="row">F<td>float
<tr><th scope="row">D<td>double
<tr><th scope="row"><strong>L</strong> <em>fully-qualified-class</em> 
<strong>;</strong>
<td>fully-qualified-class
<tr><th scope="row"><strong>[</strong> <em>type
</em>
<td><em>type</em>[]
<tr><th scope="row">
<strong>(</strong> <em>arg-types </em><strong>)</strong> <em>ret-type
</em>
<td>method type (including constructors)
</tbody>
</Table>
</dd></dl>
<p>For example, the Java method:
<pre>    long f (int n, String s, int[] arr);
</pre>has the following type signature:
<pre>    (ILjava/lang/String;[I)J
</pre>
</BODY>
</HTML>