1 32 package com.imagero.uio; 33 34 import java.io.DataOutput ; 35 import java.io.IOException ; 36 37 45 public interface RandomAccess extends RandomAccessRO, DataOutput { 46 53 void setLength(long newLength) throws IOException ; 54 55 62 void write(short[] data) throws IOException ; 63 64 72 void write(short[] data, int byteOrder) throws IOException ; 73 74 83 void write(short[] data, int offset, int length) throws IOException ; 84 85 95 void write(short[] data, int offset, int length, int byteOrder) throws IOException ; 96 97 104 void write(char[] data) throws IOException ; 105 106 114 void write(char[] data, int byteOrder) throws IOException ; 115 116 125 void write(char[] data, int offset, int length) throws IOException ; 126 127 137 void write(char[] data, int offset, int length, int byteOrder) throws IOException ; 138 139 146 void write(int[] data) throws IOException ; 147 148 156 void write(int[] data, int byteOrder) throws IOException ; 157 158 167 void write(int[] data, int offset, int length) throws IOException ; 168 169 179 void write(int[] data, int offset, int length, int byteOrder) throws IOException ; 180 181 188 void write(float[] data) throws IOException ; 189 190 198 void write(float[] data, int byteOrder) throws IOException ; 199 200 209 void write(float[] data, int offset, int length) throws IOException ; 210 211 221 void write(float[] data, int offset, int length, int byteOrder) throws IOException ; 222 223 230 void write(long[] data) throws IOException ; 231 232 240 void write(long[] data, int byteOrder) throws IOException ; 241 242 251 void write(long[] data, int offset, int length) throws IOException ; 252 253 263 void write(long[] data, int offset, int length, int byteOrder) throws IOException ; 264 265 272 void write(double[] data) throws IOException ; 273 274 282 void write(double[] data, int byteOrder) throws IOException ; 283 284 293 void write(double[] data, int offset, int length) throws IOException ; 294 295 305 void write(double[] data, int offset, int length, int byteOrder) throws IOException ; 306 307 } 308 | Popular Tags |