IWriter.write

Overview | Methods | This Package | All Packages

IWriter.write

Writes the specified item to the text stream.

Syntax

public void write( char value )

public void write( char[] buffer )

public void write( char[] buffer, int index, int count )

public void write( boolean b_value )

public void write( int i_value )

public void write( long l_value )

public void write( float f_value )

public void write( double d_value )

public void write( String s_value )

public void write( Object o_value )

Parameters

value

The character to write to the text stream.

buffer

The character array to write to the text stream.

index

The starting index in the buffer.

count

The number of characters to write.

b_value

The boolean value to write.

i_value

The integer to write. The text of  i_value is produced by calling the Integer.toString(int) method.

l_value

The long to write. The text of  l_value is produced by calling the Long.toString(long) method.

f_value

The float to write. The text of  f_value is produced by calling the Float.toString(float) method.

d_value

The double to write. The text of  d_value is produced by calling the Double.toString(double) method.

s_value

The string to write. If the specified string is null, nothing is written to the text stream.

o_value

The object to write.