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:
JRE 8 rt.jar - org.* Package Source Code
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries.
JRE (Java Runtime) 8 is the runtime environment included in JDK 8.
JRE 8 rt.jar libraries are divided into 6 packages:
com.* - Internal Oracle and Sun Microsystems libraries java.* - Standard Java API libraries. javax.* - Extended Java API libraries. jdk.* - JDK supporting libraries. org.* - Third party libraries. sun.* - Old libraries developed by Sun Microsystems.
JAR File Information:
Directory of C:\fyicenter\jdk-1.8.0_191\jre\lib 63,596,151 rt.jar
Here is the list of Java classes of the org.* package in JRE 1.8.0_191 rt.jar. Java source codes are also provided.
✍: FYIcenter
⏎ org/omg/CORBA/DataOutputStream.java
/* * Copyright (c) 1998, 1999, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package org.omg.CORBA; /** Defines the methods used to write primitive data types to output streams * for marshalling custom value types. This interface is used by user * written custom marshalling code for custom value types. * @see org.omg.CORBA.DataInputStream * @see org.omg.CORBA.CustomMarshal */ public interface DataOutputStream extends org.omg.CORBA.portable.ValueBase { /** * Writes the Any value to the output stream. * @param value The value to be written. */ void write_any (org.omg.CORBA.Any value); /** * Writes the boolean value to the output stream. * @param value The value to be written. */ void write_boolean (boolean value); /** * Writes the IDL character value to the output stream. * @param value The value to be written. */ void write_char (char value); /** * Writes the IDL wide character value to the output stream. * @param value The value to be written. */ void write_wchar (char value); /** * Writes the IDL octet value (represented as a Java byte) to the output stream. * @param value The value to be written. */ void write_octet (byte value); /** * Writes the IDL short value to the output stream. * @param value The value to be written. */ void write_short (short value); /** * Writes the IDL unsigned short value (represented as a Java short * value) to the output stream. * @param value The value to be written. */ void write_ushort (short value); /** * Writes the IDL long value (represented as a Java int) to the output stream. * @param value The value to be written. */ void write_long (int value); /** * Writes the IDL unsigned long value (represented as a Java int) to the output stream. * @param value The value to be written. */ void write_ulong (int value); /** * Writes the IDL long long value (represented as a Java long) to the output stream. * @param value The value to be written. */ void write_longlong (long value); /** * Writes the IDL unsigned long long value (represented as a Java long) * to the output stream. * @param value The value to be written. */ void write_ulonglong (long value); /** * Writes the IDL float value to the output stream. * @param value The value to be written. */ void write_float (float value); /** * Writes the IDL double value to the output stream. * @param value The value to be written. */ void write_double (double value); // write_longdouble not supported by IDL/Java mapping /** * Writes the IDL string value to the output stream. * @param value The value to be written. */ void write_string (String value); /** * Writes the IDL wide string value (represented as a Java String) to the output stream. * @param value The value to be written. */ void write_wstring (String value); /** * Writes the IDL CORBA::Object value to the output stream. * @param value The value to be written. */ void write_Object (org.omg.CORBA.Object value); /** * Writes the IDL Abstract interface type to the output stream. * @param value The value to be written. */ void write_Abstract (java.lang.Object value); /** * Writes the IDL value type value to the output stream. * @param value The value to be written. */ void write_Value (java.io.Serializable value); /** * Writes the typecode to the output stream. * @param value The value to be written. */ void write_TypeCode (org.omg.CORBA.TypeCode value); /** * Writes the array of IDL Anys from offset for length elements to the * output stream. * @param seq The array to be written. * @param offset The index into seq of the first element to write to the * output stream. * @param length The number of elements to write to the output stream. */ void write_any_array (org.omg.CORBA.Any[] seq, int offset, int length); /** * Writes the array of IDL booleans from offset for length elements to the * output stream. * @param seq The array to be written. * @param offset The index into seq of the first element to write to the * output stream. * @param length The number of elements to write to the output stream. */ void write_boolean_array (boolean[] seq, int offset, int length); /** * Writes the array of IDL characters from offset for length elements to the * output stream. * @param seq The array to be written. * @param offset The index into seq of the first element to write to the * output stream. * @param length The number of elements to write to the output stream. */ void write_char_array (char[] seq, int offset, int length); /** * Writes the array of IDL wide characters from offset for length elements to the * output stream. * @param seq The array to be written. * @param offset The index into seq of the first element to write to the * output stream. * @param length The number of elements to write to the output stream. */ void write_wchar_array (char[] seq, int offset, int length); /** * Writes the array of IDL octets from offset for length elements to the * output stream. * @param seq The array to be written. * @param offset The index into seq of the first element to write to the * output stream. * @param length The number of elements to write to the output stream. */ void write_octet_array (byte[] seq, int offset, int length); /** * Writes the array of IDL shorts from offset for length elements to the * output stream. * @param seq The array to be written. * @param offset The index into seq of the first element to write to the * output stream. * @param length The number of elements to write to the output stream. */ void write_short_array (short[] seq, int offset, int length); /** * Writes the array of IDL unsigned shorts (represented as Java shorts) * from offset for length elements to the output stream. * @param seq The array to be written. * @param offset The index into seq of the first element to write to the * output stream. * @param length The number of elements to write to the output stream. */ void write_ushort_array (short[] seq, int offset, int length); /** * Writes the array of IDL longs from offset for length elements to the * output stream. * @param seq The array to be written. * @param offset The index into seq of the first element to write to the * output stream. * @param length The number of elements to write to the output stream. */ void write_long_array (int[] seq, int offset, int length); /** * Writes the array of IDL unsigned longs (represented as Java ints) * from offset for length elements to the output stream. * @param seq The array to be written. * @param offset The index into seq of the first element to write to the * output stream. * @param length The number of elements to write to the output stream. */ void write_ulong_array (int[] seq, int offset, int length); /** * Writes the array of IDL unsigned long longs (represented as Java longs) * from offset for length elements to the output stream. * @param seq The array to be written. * @param offset The index into seq of the first element to write to the * output stream. * @param length The number of elements to write to the output stream. */ void write_ulonglong_array (long[] seq, int offset, int length); /** * Writes the array of IDL long longs from offset for length elements to the * output stream. * @param seq The array to be written. * @param offset The index into seq of the first element to write to the * output stream. * @param length The number of elements to write to the output stream. */ void write_longlong_array (long[] seq, int offset, int length); /** * Writes the array of IDL floats from offset for length elements to the * output stream. * @param seq The array to be written. * @param offset The index into seq of the first element to write to the * output stream. * @param length The number of elements to write to the output stream. */ void write_float_array (float[] seq, int offset, int length); /** * Writes the array of IDL doubles from offset for length elements to the * output stream. * @param seq The array to be written. * @param offset The index into seq of the first element to write to the * output stream. * @param length The number of elements to write to the output stream. */ void write_double_array (double[] seq, int offset, int length); } // interface DataOutputStream
⏎ org/omg/CORBA/DataOutputStream.java
Or download all of them as a single archive file:
File name: jre-rt-org-1.8.0_191-src.zip File size: 951125 bytes Release date: 2018-10-28 Download
⇒ JRE 8 rt.jar - com.* Package Source Code
2021-12-10, 157075👍, 5💬
Popular Posts:
JDK 11 java.xml.crypto.jmod is the JMOD file for JDK 11 XML (eXtensible Markup Language) Crypto modu...
JDK 11 java.xml.jmod is the JMOD file for JDK 11 XML (eXtensible Markup Language) module. JDK 11 XML...
JDK 11 jdk.localedata.jmod is the JMOD file for JDK 11 Localedata module. JDK 11 Locale Data module ...
What Is javax.websocket-api-1.1. jar?javax.websocket-api-1.1. jaris the JAR file for Java API for We...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....