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.jcmd.jmod - JCmd Tool
JDK 11 jdk.jcmd.jmod is the JMOD file for JDK 11 JCmd tool, which can be invoked by the "jcmd" command.
JDK 11 JCmd tool compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.jcmd.jmod.
JDK 11 JCmd tool compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 JCmd source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.jcmd.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/tools/jstat/Scale.java
/* * Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package sun.tools.jstat; import java.util.*; /** * A typesafe enumeration for describing data scaling semantics * * @author Brian Doherty * @since 1.5 */ public class Scale { private static int nextOrdinal = 0; private static HashMap<String, Scale> map = new HashMap<String, Scale>(); private final String name; private final int ordinal = nextOrdinal++; private final double factor; private Scale(String name, double factor) { this.name = name; this.factor = factor; assert !map.containsKey(name); map.put(name, this); } /** * Scale representing a no scaling */ public static final Scale RAW = new Scale("raw", 1); /** * Scale representing a percent scaling */ public static final Scale PERCENT = new Scale("percent", 1/100); /** * Scale representing a kilo scaling */ public static final Scale KILO = new Scale("K", 1024); /** * Scale representing a mega scaling */ public static final Scale MEGA = new Scale("M", 1024*1024); /** * Scale representing a giga scaling */ public static final Scale GIGA = new Scale("G", 1024*1024*1024); /** * Scale representing a tera scaling */ public static final Scale TERA = new Scale("T", 1024*1024*1024*1024); /** * Scale representing a tera scaling */ public static final Scale PETA = new Scale("P", 1024*1024*1024*1024*1024); /** * Scale representing a pico scaling */ public static final Scale PICO = new Scale("p", 10.0E-12); /** * Scale representing a nano scaling */ public static final Scale NANO = new Scale("n", 10.0E-9); /** * Scale representing a micro scaling */ public static final Scale MICRO = new Scale("u", 10.0E-6); /** * Scale representing a milli scaling */ public static final Scale MILLI = new Scale("m", 10.0E-3); /** * Scale representing a picosecond scaling */ public static final Scale PSEC = new Scale("ps", 10.0E-12); /** * Scale representing a nanosecond scaling */ public static final Scale NSEC = new Scale("ns", 10.0E-9); /** * Scale representing a microsecond scaling */ public static final Scale USEC = new Scale("us", 10.0E-6); /** * Scale representing a millisecond scaling */ public static final Scale MSEC = new Scale("ms", 10.0E-3); /** * Scale representing a second scaling */ public static final Scale SEC = new Scale("s", 1); public static final Scale SEC2 = new Scale("sec", 1); /** * Scale representing a minutes scaling */ public static final Scale MINUTES = new Scale("min", 1/60.0); /** * Scale representing a hours scaling */ public static final Scale HOUR = new Scale("h", 1/(60.0*60.0)); public static final Scale HOUR2 = new Scale("hour", 1/(60.0*60.0)); /** * Returns the scaling factor of this Scale object * * @return the scaling factor of this Scale object */ public double getFactor() { return factor; } /** * Returns the string representation of this Scale object. * The string representation is the name of the Scale object. * * @return the string representation of this Scale object */ public String toString() { return name; } /** * Maps a string to its corresponding Scale object. * * @param s a string to match against Scale objects. * @return The Scale object matching the given string. */ public static Scale toScale(String s) { return map.get(s); } /** * Returns an enumeration of the keys for this enumerated type * * @param s an string to match against Scale objects. * @return The Scale object matching the given string. */ protected static Set<String> keySet() { return map.keySet(); } protected double scale(double value) { return value/factor; } }
⏎ sun/tools/jstat/Scale.java
Or download all of them as a single archive file:
File name: jdk.jcmd-11.0.1-src.zip File size: 47892 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.jconsole.jmod - JConsole Tool
2020-07-07, 15068👍, 0💬
Popular Posts:
Apache Log4j SLF4J Binding allows applications coded to the SLF4J API to use Log4j 2 as the implemen...
Apache Commons Codec library provides implementations of common encoders and decoders such as Base64...
JDK 11 jdk.dynalink.jmod is the JMOD file for JDK 11 Dynamic Linking module. JDK 11 Dynamic Linking ...
Apache ZooKeeper is an open-source server which enables highly reliable distributed coordination. Ap...
How to download and install iText7-Core-7.1.4.zip? iText7-Core-7.1.4.zip is the binary package of iT...