Name

InputStream

Synopsis

An InputStream is used for unmarshalling IDL-generated objects. The InputStream provides a series of read_XXX() methods for unmarshalling basic IDL types.

                  
public abstract class InputStream extends java.io.InputStream {
// Public Constructors
   public InputStream();  
// Public Instance Methods
   public org.omg.CORBA.ORB orb();  
   public abstract Any read_any();  
   public abstract boolean read_boolean();  
   public abstract void read_boolean_array(
        boolean[] value, int offset, int length);  
   public abstract char read_char();  
   public abstract void read_char_array(char[] value, 
        int offset, int length);  
   public org.omg.CORBA.Context read_Context();  
   public abstract double read_double();  
   public abstract void read_double_array(
        double[] value, int offset, int length);  
   public java.math.BigDecimal read_fixed();  
   public abstract float read_float();  
   public abstract void read_float_array(
        float[] value, int offset, int length);  
   public abstract int read_long();  
   public abstract void read_long_array(int[] value, 
        int offset, int length);  
   public abstract long read_longlong();  
   public abstract void read_longlong_array(
        long[] value, int offset, int length);  
   public abstract org.omg.CORBA.Object read_Object();  
   public org.omg.CORBA.Object read_Object( Class clz);  
   public abstract byte read_octet();  
   public abstract void read_octet_array(byte[] value, 
        int offset, int length);  
   public abstract short 

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.