Name

DataOutputStream

Synopsis

An interface that declares methods for writing basic data types to output streams.

                  Passed To
public interface DataOutputStream extends org.omg.CORBA.portable.ValueBase {
// Public Instance Methods
   public abstract void write_Abstract( Object value);  
   public abstract void write_any( Any value);  
   public abstract void write_any_array(Any[] seq, 
        int offset, int length);  
   public abstract void write_boolean( boolean value);  
   public abstract void write_boolean_array(
        boolean[] seq, int offset, int length);  
   public abstract void write_char( char value);  
   public abstract void write_char_array(char[] seq, 
        int offset, int length);  
   public abstract void write_double( double value);  
   public abstract void write_double_array(
        double[] seq, int offset, int length);  
   public abstract void write_float( float value);  
   public abstract void write_float_array(float[] seq, 
        int offset, int length);  
   public abstract void write_long( int value);  
   public abstract void write_long_array(int[] seq, 
        int offset, int length);  
   public abstract void write_longlong( long value);  
   public abstract void write_longlong_array(
        long[] seq, int offset, int length);  
   public abstract void write_Object(
        org.omg.CORBA.Object value);  
   public abstract void write_octet( byte value);  
   public abstract void write_octet_array(byte[] seq, 
        int offset, int length);  
   public abstract void write_short( short value); public abstract void  ...

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.