1 2 17 18 19 package org.apache.poi.util; 20 21 import org.apache.poi.util.LittleEndian.BufferUnderrunException; 22 23 import java.io.*; 24 25 30 31 public interface FixedField 32 { 33 34 42 43 public void readFromBytes(byte [] data) 44 throws ArrayIndexOutOfBoundsException ; 45 46 57 58 public void readFromStream(InputStream stream) 59 throws IOException, BufferUnderrunException; 60 61 71 72 public void writeToBytes(byte [] data) 73 throws ArrayIndexOutOfBoundsException ; 74 75 80 81 public String toString(); 82 } 84 | Popular Tags |