src/jdk.jdi/share/classes/com/sun/jdi/doc-files/signature.html
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 55471 179204eb9444
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default

<!DOCTYPE HTML>
<!--
 Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.

 This code is free software; you can redistribute it and/or modify it
 under the terms of the GNU General Public License version 2 only, as
 published by the Free Software Foundation.  Oracle designates this
 particular file as subject to the "Classpath" exception as provided
 by Oracle in the LICENSE file that accompanied this code.

 This code is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 version 2 for more details (a copy is included in the LICENSE file that
 accompanied this code).

 You should have received a copy of the GNU General Public License version
 2 along with this work; if not, write to the Free Software Foundation,
 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.

 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 or visit www.oracle.com if you need additional information or have any
 questions.
-->

<HTML lang="EN">
<HEAD>
<TITLE>
JDI Type Signatures
</TITLE>
<META charset="UTF-8">
<STYLE type="text/css">
tbody th { font-weight: normal }
table {
    margin-left: 40px;
    margin-top: 1em;
    margin-bottom: 1em;
}
</STYLE>
</HEAD>
<BODY style="background-color:white">
<h1>JDI Type Signatures</h1>
<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>
<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>