Java Doc for InputStream.java in  » 6.0-JDK-Modules-sun » omg » org » omg » CORBA » portable » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules sun » omg » org.omg.CORBA.portable 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.io.InputStream
      org.omg.CORBA.portable.InputStream

All known Subclasses:   org.omg.CORBA_2_3.portable.InputStream,
InputStream
abstract public class InputStream extends java.io.InputStream (Code)
InputStream is the Java API for reading IDL types from CDR marshal streams. These methods are used by the ORB to unmarshal IDL types as well as to extract IDL types out of Anys. The _array versions of the methods can be directly used to read sequences and arrays of IDL types.
version:
   1.12, 04/22/98
since:
   JDK1.2




Method Summary
public  org.omg.CORBA.ORBorb()
     Returns the ORB that created this InputStream.
public  intread()
    
public  org.omg.CORBA.Contextread_Context()
     Reads a CORBA context from the stream.
abstract public  org.omg.CORBA.Objectread_Object()
     Reads a CORBA object from this input stream.
public  org.omg.CORBA.Objectread_Object(java.lang.Class clz)
     Unmarshals an object and returns a CORBA Object, which is an instance of the class passed as its argument. This class is the stub class of the expected type.
Parameters:
  clz - The Class object for the stub class which corresponds to the type that is statistically expected, orthe Class object for the RMI/IDL interface type thatis statistically expected.
public  Principalread_Principal()
     Returns principal for invocation.
abstract public  TypeCoderead_TypeCode()
     Reads a TypeCode from this input stream.
abstract public  Anyread_any()
     Reads an Any from this input stream.
abstract public  booleanread_boolean()
     Reads a boolean value from this input stream.
abstract public  voidread_boolean_array(boolean[] value, int offset, int length)
     Reads an array of booleans from this input stream.
abstract public  charread_char()
     Reads a char value from this input stream.
abstract public  voidread_char_array(char[] value, int offset, int length)
     Reads an array of chars from this input stream.
abstract public  doubleread_double()
     Reads a double value from this input stream.
abstract public  voidread_double_array(double[] value, int offset, int length)
     Reads an array of doubles from this input stream.
public  java.math.BigDecimalread_fixed()
     Reads a BigDecimal number.
abstract public  floatread_float()
     Reads a float value from this input stream.
abstract public  voidread_float_array(float[] value, int offset, int length)
     Reads an array of floats from this input stream.
abstract public  intread_long()
     Reads a CORBA long (that is, Java int) value from this input stream.
abstract public  voidread_long_array(int[] value, int offset, int length)
     Reads an array of CORBA longs (that is, Java ints) from this input stream.
abstract public  longread_longlong()
     Reads a CORBA longlong (that is, Java long) value from this input stream.
abstract public  voidread_longlong_array(long[] value, int offset, int length)
     Reads an array of CORBA longlongs (that is, Java longs) from this input stream.
abstract public  byteread_octet()
     Reads an octet (that is, a byte) value from this input stream.
abstract public  voidread_octet_array(byte[] value, int offset, int length)
     Reads an array of octets (that is, bytes) from this input stream.
abstract public  shortread_short()
     Reads a short value from this input stream.
abstract public  voidread_short_array(short[] value, int offset, int length)
     Reads an array of shorts from this input stream.
abstract public  Stringread_string()
     Reads a string value from this input stream.
abstract public  intread_ulong()
     Reads an unsigned CORBA long (that is, Java int) value from this input stream.
abstract public  voidread_ulong_array(int[] value, int offset, int length)
     Reads an array of unsigned CORBA longs (that is, Java ints) from this input stream.
abstract public  longread_ulonglong()
     Reads a CORBA unsigned longlong (that is, Java long) value from this input stream.
abstract public  voidread_ulonglong_array(long[] value, int offset, int length)
     Reads an array of unsigned CORBA longlongs (that is, Java longs) from this input stream.
abstract public  shortread_ushort()
     Reads a unsigned short value from this input stream.
abstract public  voidread_ushort_array(short[] value, int offset, int length)
     Reads an array of unsigned shorts from this input stream.
abstract public  charread_wchar()
     Reads a wide char value from this input stream.
abstract public  voidread_wchar_array(char[] value, int offset, int length)
     Reads an array of wide chars from this input stream.
abstract public  Stringread_wstring()
     Reads a wide string value from this input stream.



Method Detail
orb
public org.omg.CORBA.ORB orb()(Code)
Returns the ORB that created this InputStream. the ORB object that created this stream
See Also:    portable
See Also:   package comments for unimplemented features



read
public int read() throws java.io.IOException(Code)

See Also:    portable
See Also:   package comments for unimplemented features



read_Context
public org.omg.CORBA.Context read_Context()(Code)
Reads a CORBA context from the stream. a CORBA context
See Also:    portable
See Also:   package comments for unimplemented features



read_Object
abstract public org.omg.CORBA.Object read_Object()(Code)
Reads a CORBA object from this input stream. the Object instance read from this input stream.



read_Object
public org.omg.CORBA.Object read_Object(java.lang.Class clz)(Code)
Unmarshals an object and returns a CORBA Object, which is an instance of the class passed as its argument. This class is the stub class of the expected type.
Parameters:
  clz - The Class object for the stub class which corresponds to the type that is statistically expected, orthe Class object for the RMI/IDL interface type thatis statistically expected. an Object instance of clz read from this stream
See Also:    portable
See Also:   package comments for unimplemented features



read_Principal
public Principal read_Principal()(Code)
Returns principal for invocation. Principal for invocation.



read_TypeCode
abstract public TypeCode read_TypeCode()(Code)
Reads a TypeCode from this input stream. the TypeCode instance read from this input stream.



read_any
abstract public Any read_any()(Code)
Reads an Any from this input stream. the Any instance read from this input stream.



read_boolean
abstract public boolean read_boolean()(Code)
Reads a boolean value from this input stream. the boolean value read from this input stream



read_boolean_array
abstract public void read_boolean_array(boolean[] value, int offset, int length)(Code)
Reads an array of booleans from this input stream.
Parameters:
  value - returned array of booleans.
Parameters:
  offset - offset on the stream.
Parameters:
  length - length of buffer to read.



read_char
abstract public char read_char()(Code)
Reads a char value from this input stream. the char value read from this input stream



read_char_array
abstract public void read_char_array(char[] value, int offset, int length)(Code)
Reads an array of chars from this input stream.
Parameters:
  value - returned array of chars.
Parameters:
  offset - offset on the stream.
Parameters:
  length - length of buffer to read.



read_double
abstract public double read_double()(Code)
Reads a double value from this input stream. the double value read from this input stream



read_double_array
abstract public void read_double_array(double[] value, int offset, int length)(Code)
Reads an array of doubles from this input stream.
Parameters:
  value - returned array of doubles.
Parameters:
  offset - offset on the stream.
Parameters:
  length - length of buffer to read.



read_fixed
public java.math.BigDecimal read_fixed()(Code)
Reads a BigDecimal number. a java.math.BigDecimal number



read_float
abstract public float read_float()(Code)
Reads a float value from this input stream. the float value read from this input stream



read_float_array
abstract public void read_float_array(float[] value, int offset, int length)(Code)
Reads an array of floats from this input stream.
Parameters:
  value - returned array of floats.
Parameters:
  offset - offset on the stream.
Parameters:
  length - length of buffer to read.



read_long
abstract public int read_long()(Code)
Reads a CORBA long (that is, Java int) value from this input stream. the int value read from this input stream



read_long_array
abstract public void read_long_array(int[] value, int offset, int length)(Code)
Reads an array of CORBA longs (that is, Java ints) from this input stream.
Parameters:
  value - returned array of CORBA longs (that is, Java ints).
Parameters:
  offset - offset on the stream.
Parameters:
  length - length of buffer to read.



read_longlong
abstract public long read_longlong()(Code)
Reads a CORBA longlong (that is, Java long) value from this input stream. the long value read from this input stream



read_longlong_array
abstract public void read_longlong_array(long[] value, int offset, int length)(Code)
Reads an array of CORBA longlongs (that is, Java longs) from this input stream.
Parameters:
  value - returned array of CORBA longs (that is, Java longs).
Parameters:
  offset - offset on the stream.
Parameters:
  length - length of buffer to read.



read_octet
abstract public byte read_octet()(Code)
Reads an octet (that is, a byte) value from this input stream. the byte value read from this input stream



read_octet_array
abstract public void read_octet_array(byte[] value, int offset, int length)(Code)
Reads an array of octets (that is, bytes) from this input stream.
Parameters:
  value - returned array of octets (that is, bytes).
Parameters:
  offset - offset on the stream.
Parameters:
  length - length of buffer to read.



read_short
abstract public short read_short()(Code)
Reads a short value from this input stream. the short value read from this input stream



read_short_array
abstract public void read_short_array(short[] value, int offset, int length)(Code)
Reads an array of shorts from this input stream.
Parameters:
  value - returned array of shorts.
Parameters:
  offset - offset on the stream.
Parameters:
  length - length of buffer to read.



read_string
abstract public String read_string()(Code)
Reads a string value from this input stream. the String value read from this input stream



read_ulong
abstract public int read_ulong()(Code)
Reads an unsigned CORBA long (that is, Java int) value from this input stream. the int value read from this input stream



read_ulong_array
abstract public void read_ulong_array(int[] value, int offset, int length)(Code)
Reads an array of unsigned CORBA longs (that is, Java ints) from this input stream.
Parameters:
  value - returned array of CORBA longs (that is, Java ints).
Parameters:
  offset - offset on the stream.
Parameters:
  length - length of buffer to read.



read_ulonglong
abstract public long read_ulonglong()(Code)
Reads a CORBA unsigned longlong (that is, Java long) value from this input stream. the long value read from this input stream



read_ulonglong_array
abstract public void read_ulonglong_array(long[] value, int offset, int length)(Code)
Reads an array of unsigned CORBA longlongs (that is, Java longs) from this input stream.
Parameters:
  value - returned array of CORBA longs (that is, Java longs).
Parameters:
  offset - offset on the stream.
Parameters:
  length - length of buffer to read.



read_ushort
abstract public short read_ushort()(Code)
Reads a unsigned short value from this input stream. the short value read from this input stream



read_ushort_array
abstract public void read_ushort_array(short[] value, int offset, int length)(Code)
Reads an array of unsigned shorts from this input stream.
Parameters:
  value - returned array of shorts.
Parameters:
  offset - offset on the stream.
Parameters:
  length - length of buffer to read.



read_wchar
abstract public char read_wchar()(Code)
Reads a wide char value from this input stream. the char value read from this input stream



read_wchar_array
abstract public void read_wchar_array(char[] value, int offset, int length)(Code)
Reads an array of wide chars from this input stream.
Parameters:
  value - returned array of wide chars.
Parameters:
  offset - offset on the stream.
Parameters:
  length - length of buffer to read.



read_wstring
abstract public String read_wstring()(Code)
Reads a wide string value from this input stream. the String value read from this input stream



Methods inherited from java.io.InputStream
public int available() throws IOException(Code)(Java Doc)
public void close() throws IOException(Code)(Java Doc)
public synchronized void mark(int readlimit)(Code)(Java Doc)
public boolean markSupported()(Code)(Java Doc)
abstract public int read() throws IOException(Code)(Java Doc)
public int read(byte b) throws IOException(Code)(Java Doc)
public int read(byte b, int off, int len) throws IOException(Code)(Java Doc)
public synchronized void reset() throws IOException(Code)(Java Doc)
public long skip(long n) throws IOException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.