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 jdk.random.jmod - JDK Random Module
JDK 17 jdk.random.jmod is the JMOD file for JDK 17 Random module.
JDK 17 Random module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.random.jmod.
JDK 17 Random module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Random module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.random.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ module-info.java
/*
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
import jdk.internal.util.random.RandomSupport;
/**
* Defines implementations of the
* {@linkplain java.util.random.RandomGenerator RandomGenerator Interface}.
*
* @provides jdk.random.L128X1024MixRandom
* @provides jdk.random.L128X128MixRandom
* @provides jdk.random.L128X256MixRandom
* @provides jdk.random.L32X64MixRandom
* @provides jdk.random.L64X1024MixRandom
* @provides jdk.random.L64X128MixRandom
* @provides jdk.random.L64X128StarStarRandom
* @provides jdk.random.L64X256MixRandom
* @provides jdk.random.Xoroshiro128PlusPlus
* @provides jdk.random.Xoshiro256PlusPlus
*
* @use java.util.random.RandomGenerator
* @use jdk.internal.util.random.RandomSupport
*
* @moduleGraph
* @since 16
*/
module jdk.random {
exports jdk.random to
java.base;
provides java.util.random.RandomGenerator with
jdk.random.L32X64MixRandom,
jdk.random.L64X128MixRandom,
jdk.random.L64X128StarStarRandom,
jdk.random.L64X256MixRandom,
jdk.random.L64X1024MixRandom,
jdk.random.L128X128MixRandom,
jdk.random.L128X256MixRandom,
jdk.random.L128X1024MixRandom,
jdk.random.Xoroshiro128PlusPlus,
jdk.random.Xoshiro256PlusPlus;
}
⏎ module-info.java
Or download all of them as a single archive file:
File name: jdk.random-17.0.5-src.zip File size: 40593 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.sctp.jmod - SCTP Module
2023-07-18, ∼2583🔥, 0💬
Popular Posts:
JBrowser Source Code Files are provided in the source package file. You can download JBrowser source...
What Is wstx-asl-3.2.8.jar? wstx-asl-3.2.8.jar is JAR file for the ASL component of Woodstox 3.2.8. ...
What Is poi-scratchpad-3.5.jar? poi-scratchpad-3.5.jar is one of the JAR files for Apache POI 3.5, w...
What Is jtds-1.2.2.jar? jtds-1.2.2.jar is the JAR files of jTDS Java library 1.2.2, which is a JDBC ...
Snappy-Java is a Java port of the "snappy", a fast C++ compresser/decompresser developed by Google. ...