KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > io > TCDataOutput


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.io;
5
6
7 public interface TCDataOutput {
8
9   public void close();
10
11   public void write(int value);
12
13   public void write(byte[] value);
14
15   public void write(byte[] value, int offset, int length);
16
17   public void writeBoolean(boolean value);
18
19   public void writeByte(int value);
20
21   public void writeChar(int value);
22
23   public void writeDouble(double value);
24
25   public void writeFloat(float value);
26
27   public void writeInt(int value);
28
29   public void writeLong(long value);
30
31   public void writeShort(int value);
32   
33   public void writeString(String JavaDoc string);
34
35 }
36
Popular Tags