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/portable/OutputStream.java
/* * Copyright (c) 1997, 2004, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package org.omg.CORBA.portable; import org.omg.CORBA.TypeCode; import org.omg.CORBA.Principal; import org.omg.CORBA.Any; /** * OuputStream is the Java API for writing IDL types * to CDR marshal streams. These methods are used by the ORB to * marshal IDL types as well as to insert IDL types into Anys. * The <code>_array</code> versions of the methods can be directly * used to write sequences and arrays of IDL types. * * @since JDK1.2 */ public abstract class OutputStream extends java.io.OutputStream { /** * Returns an input stream with the same buffer. *@return an input stream with the same buffer. */ public abstract InputStream create_input_stream(); /** * Writes a boolean value to this stream. * @param value the value to be written. */ public abstract void write_boolean(boolean value); /** * Writes a char value to this stream. * @param value the value to be written. */ public abstract void write_char(char value); /** * Writes a wide char value to this stream. * @param value the value to be written. */ public abstract void write_wchar(char value); /** * Writes a CORBA octet (i.e. byte) value to this stream. * @param value the value to be written. */ public abstract void write_octet(byte value); /** * Writes a short value to this stream. * @param value the value to be written. */ public abstract void write_short(short value); /** * Writes an unsigned short value to this stream. * @param value the value to be written. */ public abstract void write_ushort(short value); /** * Writes a CORBA long (i.e. Java int) value to this stream. * @param value the value to be written. */ public abstract void write_long(int value); /** * Writes an unsigned CORBA long (i.e. Java int) value to this stream. * @param value the value to be written. */ public abstract void write_ulong(int value); /** * Writes a CORBA longlong (i.e. Java long) value to this stream. * @param value the value to be written. */ public abstract void write_longlong(long value); /** * Writes an unsigned CORBA longlong (i.e. Java long) value to this stream. * @param value the value to be written. */ public abstract void write_ulonglong(long value); /** * Writes a float value to this stream. * @param value the value to be written. */ public abstract void write_float(float value); /** * Writes a double value to this stream. * @param value the value to be written. */ public abstract void write_double(double value); /** * Writes a string value to this stream. * @param value the value to be written. */ public abstract void write_string(String value); /** * Writes a wide string value to this stream. * @param value the value to be written. */ public abstract void write_wstring(String value); /** * Writes an array of booleans on this output stream. * @param value the array to be written. * @param offset offset on the stream. * @param length length of buffer to write. */ public abstract void write_boolean_array(boolean[] value, int offset, int length); /** * Writes an array of chars on this output stream. * @param value the array to be written. * @param offset offset on the stream. * @param length length of buffer to write. */ public abstract void write_char_array(char[] value, int offset, int length); /** * Writes an array of wide chars on this output stream. * @param value the array to be written. * @param offset offset on the stream. * @param length length of buffer to write. */ public abstract void write_wchar_array(char[] value, int offset, int length); /** * Writes an array of CORBA octets (bytes) on this output stream. * @param value the array to be written. * @param offset offset on the stream. * @param length length of buffer to write. */ public abstract void write_octet_array(byte[] value, int offset, int length); /** * Writes an array of shorts on this output stream. * @param value the array to be written. * @param offset offset on the stream. * @param length length of buffer to write. */ public abstract void write_short_array(short[] value, int offset, int length); /** * Writes an array of unsigned shorts on this output stream. * @param value the array to be written. * @param offset offset on the stream. * @param length length of buffer to write. */ public abstract void write_ushort_array(short[] value, int offset, int length); /** * Writes an array of CORBA longs (i.e. Java ints) on this output stream. * @param value the array to be written. * @param offset offset on the stream. * @param length length of buffer to write. */ public abstract void write_long_array(int[] value, int offset, int length); /** * Writes an array of unsigned CORBA longs (i.e. Java ints) on this output stream. * @param value the array to be written. * @param offset offset on the stream. * @param length length of buffer to write. */ public abstract void write_ulong_array(int[] value, int offset, int length); /** * Writes an array of CORBA longlongs (i.e. Java longs) on this output stream. * @param value the array to be written. * @param offset offset on the stream. * @param length length of buffer to write. */ public abstract void write_longlong_array(long[] value, int offset, int length); /** * Writes an array of unsigned CORBA longlongs (i.e. Java ints) on this output stream. * @param value the array to be written. * @param offset offset on the stream. * @param length length of buffer to write. */ public abstract void write_ulonglong_array(long[] value, int offset, int length); /** * Writes an array of floats on this output stream. * @param value the array to be written. * @param offset offset on the stream. * @param length length of buffer to write. */ public abstract void write_float_array(float[] value, int offset, int length); /** * Writes an array of doubles on this output stream. * @param value the array to be written. * @param offset offset on the stream. * @param length length of buffer to write. */ public abstract void write_double_array(double[] value, int offset, int length); /** * Writes a CORBA Object on this output stream. * @param value the value to be written. */ public abstract void write_Object(org.omg.CORBA.Object value); /** * Writes a TypeCode on this output stream. * @param value the value to be written. */ public abstract void write_TypeCode(TypeCode value); /** * Writes an Any on this output stream. * @param value the value to be written. */ public abstract void write_any(Any value); /** * Writes a Principle on this output stream. * @param value the value to be written. * @deprecated Deprecated by CORBA 2.2. */ @Deprecated public void write_Principal(Principal value) { throw new org.omg.CORBA.NO_IMPLEMENT(); } /** * Writes an integer (length of arrays) onto this stream. * @param b the value to be written. * @throws java.io.IOException if there is an input/output error * @see <a href="package-summary.html#unimpl"><code>portable</code> * package comments for unimplemented features</a> */ public void write(int b) throws java.io.IOException { throw new org.omg.CORBA.NO_IMPLEMENT(); } /** * Writes a BigDecimal number. * @param value a BidDecimal--value to be written. */ public void write_fixed(java.math.BigDecimal value) { throw new org.omg.CORBA.NO_IMPLEMENT(); } /** * Writes a CORBA context on this stream. The * Context is marshaled as a sequence of strings. * Only those Context values specified in the contexts * parameter are actually written. * @param ctx a CORBA context * @param contexts a <code>ContextList</code> object containing the list of contexts * to be written * @see <a href="package-summary.html#unimpl"><code>portable</code> * package comments for unimplemented features</a> */ public void write_Context(org.omg.CORBA.Context ctx, org.omg.CORBA.ContextList contexts) { throw new org.omg.CORBA.NO_IMPLEMENT(); } /** * Returns the ORB that created this OutputStream. * @return the ORB that created this OutputStream * @see <a href="package-summary.html#unimpl"><code>portable</code> * package comments for unimplemented features</a> */ public org.omg.CORBA.ORB orb() { throw new org.omg.CORBA.NO_IMPLEMENT(); } }
⏎ org/omg/CORBA/portable/OutputStream.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, 157141👍, 5💬
Popular Posts:
Where Can I see Java Source Code files for Xerces Java 2.11.2? Here are Java Source Code files for X...
XMLSchema, Release 1.4.2, is a lightweight Java object model that can be used to manipulate and gene...
JDK 11 java.xml.crypto.jmod is the JMOD file for JDK 11 XML (eXtensible Markup Language) Crypto modu...
Apache Log4j SLF4J Binding allows applications coded to the SLF4J API to use Log4j 2 as the implemen...
pache Derby is an open source relational database implemented entirely in Java and available under t...