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 17 jdk.jdi.jmod - JDI Tool
JDK 17 jdk.jdi.jmod is the JMOD file for JDK 17 JDI (Java Debug Interface) tool.
JDK 17 JDI tool compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.jdi.jmod.
JDK 17 JDI tool compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 JDI tool source code files are stored in \fyicenter\jdk-17.0.5\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-17.0.5-src.zip File size: 476972 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.jdwp.agent.jmod - JDWP Agent Module
2023-04-17, 13903👍, 0💬
Popular Posts:
How to download and install JDK (Java Development Kit) 6? If you want to write Java applications, yo...
Joda-Time provides a quality replacement for the Java date and time classes. The design allows for m...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
What Is ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is the JAR files of ojdbc.jar, JD...
Apache Log4j provides the interface that applications should code to and provides the adapter compon...