Categories:
Audio (13)
Biotech (29)
Bytecode (22)
Database (79)
Framework (7)
Game (7)
General (497)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (70)
JavaBeans (16)
JDBC (86)
JDK (338)
JSP (20)
Logging (90)
Mail (54)
Messaging (8)
Network (106)
PDF (82)
Report (7)
Scripting (75)
Security (67)
Server (112)
Servlet (17)
SOAP (24)
Testing (55)
Web (24)
XML (287)
Other Resources:
JDK 11 jdk.internal.jvmstat.jmod - Internal JVM Stat Module
JDK 11 jdk.internal.JVM Stat.jmod is the JMOD file for JDK 11 Internal Jvmstat module.
JDK 11 Internal JVM Stat module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.internal.jvmstat.jmod.
JDK 11 Internal JVM Stat module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Internal JVM Stat module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.internal.jvmstat.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/jvmstat/perfdata/monitor/v1_0/BasicType.java
/* * Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package sun.jvmstat.perfdata.monitor.v1_0; /** * A typesafe enumeration for describing Java basic types. * * <p> The enumeration values for this typesafe enumeration must be * kept in synchronization with the BasicType enum in the * globalsDefinitions.hpp file in the HotSpot source base.</p> * * @author Brian Doherty * @since 1.5 */ public class BasicType { private final String name; private final int value; public static final BasicType BOOLEAN = new BasicType("boolean", 4); public static final BasicType CHAR = new BasicType("char", 5); public static final BasicType FLOAT = new BasicType("float", 6); public static final BasicType DOUBLE = new BasicType("double", 7); public static final BasicType BYTE = new BasicType("byte", 8); public static final BasicType SHORT = new BasicType("short", 9); public static final BasicType INT = new BasicType("int", 10); public static final BasicType LONG = new BasicType("long", 11); public static final BasicType OBJECT = new BasicType("object", 12); public static final BasicType ARRAY = new BasicType("array", 13); public static final BasicType VOID = new BasicType("void", 14); public static final BasicType ADDRESS = new BasicType("address", 15); public static final BasicType ILLEGAL = new BasicType("illegal", 99); private static BasicType basicTypes[] = { BOOLEAN, CHAR, FLOAT, DOUBLE, BYTE, SHORT, INT, LONG, OBJECT, ARRAY, VOID, ADDRESS, ILLEGAL }; /** * Convert enumeration value to a String. * * @return String - the string representation for the enumeration. */ public String toString() { return name; } /** * Convert enumeration to an integer value. * * @return int - the integer representation for the enumeration. */ public int intValue() { return value; } /** * Map an integer value to its corresponding BasicType object. * * @param i an integer representation of a BasicType * @return BasicType - The BasicType enumeration object matching * the value of <code>i</code> */ public static BasicType toBasicType(int i) { for (int j = 0; j < basicTypes.length; j++) { if (basicTypes[j].intValue() == j) { return (basicTypes[j]); } } return ILLEGAL; } private BasicType(String name, int value) { this.name = name; this.value = value; } }
⏎ sun/jvmstat/perfdata/monitor/v1_0/BasicType.java
⇒ JDK 11 jdk.internal.le.jmod - Internal Line Editing Module
2018-11-09, 2053👍, 0💬
Popular Posts:
MXP1 is a stable XmlPull parsing engine that is based on ideas from XPP and in particular XPP2 but c...
What Is xml-apis-ext.jar in xml-commons External 1.4.01? xml-apis-ext.jar in xml-commons External 1....
Apache Axis2 is the core engine for Web services. It is a complete re-design and re-write of the wid...
Java Servlet 2.4 Specification API. JAR File Size and Download Location: File name: servlet-api.jar,...
JRE 8 plugin.jar is the JAR file for JRE 8 Java Control Panel Plugin interface and tools. JRE (Java ...