Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
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 (322)
Collections:
Other Resources:
JDK 17 java.management.jmod - Management Module
JDK 17 java.management.jmod is the JMOD file for JDK 17 Management module.
JDK 17 Management module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.management.jmod.
JDK 17 Management module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Management module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\java.management.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/management/HotspotClassLoadingMBean.java
/*
* Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package sun.management;
import java.lang.management.ClassLoadingMXBean;
import sun.management.counter.Counter;
/**
* Hotspot internal management interface for the class loading system.
*
* This management interface is internal and uncommitted
* and subject to change without notice.
*/
public interface HotspotClassLoadingMBean {
/**
* Returns the amount of memory in bytes occupied by loaded classes
* in the Java virtual machine.
*
* @return the amount of memory in bytes occupied by loaded classes
* in the Java virtual machine.
*/
public long getLoadedClassSize();
/**
* Returns the number of bytes that the Java virtual machine
* collected due to class unloading.
*
* @return the number of bytes that the VM collected due to
* class unloading.
*/
public long getUnloadedClassSize();
/**
* Returns the accumulated elapsed time spent by class loading
* in milliseconds.
*
* @return the accumulated elapsed time spent by class loading
* in milliseconds.
*/
public long getClassLoadingTime();
/**
* Returns the amount of memory in bytes occupied by the method
* data.
*
* @return the amount of memory in bytes occupied by the method
* data.
*/
public long getMethodDataSize();
/**
* Returns the number of classes for which initializers were run.
*
* @return the number of classes for which initializers were run.
*/
public long getInitializedClassCount();
/**
* Returns the accumulated elapsed time spent in class initializers
* in milliseconds.
*
* @return the accumulated elapsed time spent in class initializers
* in milliseconds.
*/
public long getClassInitializationTime();
/**
* Returns the accumulated elapsed time spent in class verifier
* in milliseconds.
*
* @return the accumulated elapsed time spent in class verifier
* in milliseconds.
*/
public long getClassVerificationTime();
/**
* Returns a list of internal counters maintained in the Java
* virtual machine for the class loading system.
*
* @return a list of internal counters maintained in the VM
* for the class loading system.
*/
public java.util.List<Counter> getInternalClassLoadingCounters();
}
⏎ sun/management/HotspotClassLoadingMBean.java
Or download all of them as a single archive file:
File name: java.management-17.0.5-src.zip File size: 850134 bytes Release date: 2022-09-13 Download
⇒ JDK 17 java.management.rmi.jmod - Management RMI Module
2023-09-23, ≈54🔥, 0💬
Popular Posts:
Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with ...
How to download and install JDK (Java Development Kit) 6? If you want to write Java applications, yo...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
The JDT project provides the tool plug-ins that implement a Java IDE supporting the development of a...
What Is log4j-1.2.15.jar? I got the JAR file from apache-log4j-1.2.15.zip. log4j-1.2.15.jar is the v...