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.jcmd.jmod - JCmd Tool
JDK 17 jdk.jcmd.jmod is the JMOD file for JDK 17 JCmd tool, which can be invoked by the "jcmd" command.
JDK 17 JCmd tool compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.jcmd.jmod.
JDK 17 JCmd tool compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 JCmd source code files are stored in \fyicenter\jdk-17.0.5\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/Alignment.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 alignment semantics * * @author Brian Doherty * @since 1.5 */ public abstract class Alignment { private static int nextOrdinal = 0; private static HashMap<String, Alignment> map = new HashMap<String, Alignment>(); private static final String blanks = " "; private final String name; private final int value = nextOrdinal++; protected abstract String align(String s, int width); /** * Alignment representing a Centered alignment */ public static final Alignment CENTER = new Alignment("center") { protected String align(String s, int width) { int length = s.length(); if (length >= width) { return s; } int pad = width - length; int pad2 = pad / 2; int padr = pad % 2; if (pad2 == 0) { // only 0 or 1 character to pad return s + blanks.substring(0, padr); } else { // pad on both sides return blanks.substring(0, pad2) + s + blanks.substring(0, pad2 + padr); } } }; /** * Alignment representing a Left alignment */ public static final Alignment LEFT = new Alignment("left") { protected String align(String s, int width) { int length = s.length(); if (length >= width) { return s; } int pad = width - length; return s+blanks.substring(0, pad); } }; /** * Alignment representing a Right alignment */ public static final Alignment RIGHT = new Alignment("right") { protected String align(String s, int width) { int length = s.length(); if (length >= width) { return s; } int pad = width - length; return blanks.substring(0, pad) + s; } }; /** * Maps a string value to its corresponding Alignment object. * * @param s an string to match against Alignment objects. * @return The Alignment object matching the given string. */ public static Alignment toAlignment(String s) { return map.get(s); } /** * Returns an enumeration of the keys for this enumerated type * * @return Set of Key Words for this enumeration. */ public static Set<String> keySet() { return map.keySet(); } public String toString() { return name; } private Alignment(String name) { this.name = name; map.put(name, this); } }
⏎ sun/tools/jstat/Alignment.java
Or download all of them as a single archive file:
File name: jdk.jcmd-17.0.5-src.zip File size: 51997 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.jconsole.jmod - JConsole Tool
2023-08-17, 2826👍, 0💬
Popular Posts:
Old version of xml-apis.jar. JAR File Size and Download Location: File name: xmlParserAPIs.jar File ...
JDK 8 jconsole.jar is the JAR file for JDK 8 JConsole, which is a graphical monitoring tool to monit...
How to download and install Apache ZooKeeper Source Package? Apache ZooKeeper is an open-source serv...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
What Is commons-collections4-4.4 .jar?commons-collections4-4.4 .jaris the JAR file for Apache Common...