Sha256: 9a514c3ad526600e472308e72917b8732ebcccebbb9dc3412c463c0aa0951343
Contents?: true
Size: 745 Bytes
Versions: 119
Compression:
Stored size: 745 Bytes
Contents
/* * Javolution - Java(TM) Solution for Real-Time and Embedded Systems * Copyright (C) 2005 - Javolution (http://javolution.org/) * All rights reserved. * * Permission to use, copy, modify, and distribute this software is * freely granted, provided that this notice is preserved. */ package j2me.io; import java.io.IOException; import j2me.io.DataInput; public interface ObjectInput extends DataInput { Object readObject() throws ClassNotFoundException, IOException; int read() throws IOException; int read(byte b[]) throws IOException; int read(byte b[], int off, int len) throws IOException; long skip(long n) throws IOException; int available() throws IOException; void close() throws IOException; }
Version data entries
119 entries across 119 versions & 1 rubygems