Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 jdk.jdi.jmod - JDI Tool
JDK 11 jdk.jdi.jmod is the JMOD file for JDK 11 JDI (Java Debug Interface) tool.
JDK 11 JDI tool compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.jdi.jmod.
JDK 11 JDI tool compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 JDI tool source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.jdi.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/jdi/Value.java
/* * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.jdi; import com.sun.jdi.event.ModificationWatchpointEvent; /** * The mirror for a value in the target VM. * This interface is the root of a * value hierarchy encompassing primitive values and object values. * <P> * Some examples of where values may be accessed: * <BLOCKQUOTE><TABLE role="presentation"> * <TR> * <TD>{@link ObjectReference#getValue(Field) * ObjectReference.getValue(Field)} * <TD>- value of a field * <TR> * <TD>{@link StackFrame#getValue(LocalVariable) * StackFrame.getValue(LocalVariable)} * <TD>- value of a variable * <TR> * <TD>{@link VirtualMachine#mirrorOf(double) * VirtualMachine.mirrorOf(double)} * <TD>- created in the target VM by the JDI client * <TR> * <TD>{@link ModificationWatchpointEvent#valueToBe() * ModificationWatchpointEvent.valueToBe()} * <TD>- returned with an event * </TABLE></BLOCKQUOTE> * <P> * The following tables illustrate which subinterfaces of Value * are used to mirror values in the target VM -- * <TABLE class="plain"> * <CAPTION>Subinterfaces of {@link PrimitiveValue}</CAPTION> * <THEAD style="background-color:#EEEEFF; text-align:left"> * <TR> * <TH scope="col" style="width:10em">Kind of value</TH> * <TH scope="col" style="width:15em">For example -<br>expression in target</TH> * <TH scope="col" style="width:15em">Is mirrored as an<br>instance of</TH> * <TH scope="col" style="width:15em">{@link Type} of value<br>{@link #type() Value.type()}</TH> * </THEAD> * <TBODY style="text-align:left"> * <TR> * <TH scope="row">a boolean</TH> * <TD>{@code true}</TD> * <TD>{@link BooleanValue}</TD> * <TD>{@link BooleanType}</TD> * <TR> * <TH scope="row">a byte</TH> * <TD>{@code (byte)4}</TD> * <TD>{@link ByteValue}</TD> * <TD>{@link ByteType}</TD> * <TR> * <TH scope="row">a char</TH> * <TD>{@code 'a'}</TD> * <TD>{@link CharValue}</TD> * <TD>{@link CharType}</TD> * <TR> * <TH scope="row">a double</TH> * <TD>{@code 3.1415926}</TD> * <TD>{@link DoubleValue}</TD> * <TD>{@link DoubleType}</TD> * <TR> * <TH scope="row">a float</TH> * <TD>{@code 2.5f}</TD> * <TD>{@link FloatValue}</TD> * <TD>{@link FloatType}</TD> * <TR> * <TH scope="row">an int</TH> * <TD>{@code 22}</TD> * <TD>{@link IntegerValue}</TD> * <TD>{@link IntegerType}</TD> * <TR> * <TH scope="row">a long</TH> * <TD>{@code 1024L}</TD> * <TD>{@link LongValue}</TD> * <TD>{@link LongType}</TD> * <TR> * <TH scope="row">a short</TH> * <TD>{@code (short)12}</TD> * <TD>{@link ShortValue}</TD> * <TD>{@link ShortType}</TD> * <TR> * <TH scope="row">a void</TH> * <TD></TD> * <TD>{@link VoidValue}</TD> * <TD>{@link VoidType}</TD> * </TBODY> * </TABLE> * * <TABLE class="plain"> * <CAPTION>Subinterfaces of {@link ObjectReference}</CAPTION> * <THEAD style="background-color:#EEEEFF; text-align:left"> * <TR> * <TH scope="col" style="width:10em">Kind of value</TH> * <TH scope="col" style="width:15em">For example -<br>expression in target</TH> * <TH scope="col" style="width:15em">Is mirrored as an<br>instance of</TH> * <TH scope="col" style="width:15em">{@link Type} of value<br>{@link #type() Value.type()}</TH> * </THEAD> * <TBODY style="text-align:left"> * <TR> * <TH scope="row">a class instance</TH> * <TD>{@code this}</TD> * <TD>{@link ObjectReference}</TD> * <TD>{@link ClassType}</TD> * <TR> * <TH scope="row">an array</TH> * <TD>{@code new int[5]}</TD> * <TD>{@link ArrayReference}</TD> * <TD>{@link ArrayType}</TD> * <TR> * <TH scope="row">a string</TH> * <TD>{@code "hello"}</TD> * <TD>{@link StringReference}</TD> * <TD>{@link ClassType}</TD> * <TR> * <TH scope="row">a thread</TH> * <TD>{@code Thread.currentThread()}</TD> * <TD>{@link ThreadReference}</TD> * <TD>{@link ClassType}</TD> * <TR> * <TH scope="row">a thread group</TH> * <TD>{@code Thread.currentThread()}<br> {@code .getThreadGroup()}</TD> * <TD>{@link ThreadGroupReference}</TD> * <TD>{@link ClassType}</TD> * <TR> * <TH scope="row">a {@code java.lang.Class}<br>instance</TH> * <TD>{@code this.getClass()}</TD> * <TD>{@link ClassObjectReference}</TD> * <TD>{@link ClassType}</TD> * <TR> * <TH scope="row">a class loader</TH> * <TD>{@code this.getClass()}<br> {@code .getClassLoader()}</TD> * <TD>{@link ClassLoaderReference}</TD> * <TD>{@link ClassType}</TD> * </TBODY> * </TABLE> * * <TABLE class="plain"> * <CAPTION>Other values</CAPTION> * <THEAD style="background-color:#EEEEFF; text-align:left"> * <TR> * <TH scope="col" style="width:10em">Kind of value</TH> * <TH scope="col" style="width:15em">For example -<br>expression in target</TH> * <TH scope="col" style="width:15em">Is mirrored as</TH> * <TH scope="col" style="width:15em">{@link Type} of value</TH> * </THEAD> * <TBODY style="text-align:left"> * <TR> * <TH scope="row">null</TH> * <TD>{@code null}</TD> * <TD>{@code null}</TD> * <TD>n/a</TD> * </TBODY> * </TABLE> * * @author Robert Field * @author Gordon Hirsch * @author James McIlree * @since 1.3 */ public interface Value extends Mirror { /** * Returns the run-time type of this value. * * @see Type * @return a {@link Type} which mirrors the value's type in the * target VM. */ Type type(); }
⏎ com/sun/jdi/Value.java
Or download all of them as a single archive file:
File name: jdk.jdi-11.0.1-src.zip File size: 464844 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.jdwp.agent.jmod - JDWP Agent Module
2020-07-07, 71006👍, 0💬
Popular Posts:
Provides a simple high-level Http server API, which can be used to build embedded HTTP servers. Both...
What Is javamail-1_2.zip? javamail-1_2.zip is the binary package of JavaMail API 1.2 in ZIP format. ...
What Is fop.jar? I got it from the fop-2.7-bin.zip. fop.jar in fop-2.7-bin.zip is the JAR file for F...
What Is wstx-asl-3.2.8.jar? wstx-asl-3.2.8.jar is JAR file for the ASL component of Woodstox 3.2.8. ...
What Is javamail1_1_3.zip? javamail1_1_3.zip is the binary package of JavaMail API 1.1.3 in ZIP form...