Sha256: c54451fe0e5189eb80b585c6898aa5059bfb0e5f900c709ab13fbcd6ff636b4c

Contents?: true

Size: 1.07 KB

Versions: 119

Compression:

Stored size: 1.07 KB

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;

public interface DataInput {

    boolean readBoolean() throws IOException;

    byte readByte() throws IOException;

    char readChar() throws IOException;

    void readFully(byte[] b) throws IOException;

    void readFully(byte[] b, int off, int len) throws IOException;

    int readInt() throws IOException;

    String readLine() throws IOException;

    long readLong() throws IOException;

    short readShort() throws IOException;

    int readUnsignedByte() throws IOException;

    int readUnsignedShort() throws IOException;

    String readUTF() throws IOException;

    int skipBytes(int n) throws IOException;

    /*@JVM-1.1+@
     
     float readFloat() throws IOException;

     double readDouble() throws IOException;
     
     /**/
}

Version data entries

119 entries across 119 versions & 1 rubygems

Version Path
rhodes-3.5.1.12 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.5 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.4.2 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.4 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.3 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.3.beta.4 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.3.beta.3 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.3.beta.2 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.3.beta.1 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.2 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.2.beta.7 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.2.beta.6 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.2.beta.5 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.2.beta.4 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.2.beta.3 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.2.beta.2 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.2.beta.1 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.1 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.0 platform/bb/RubyVM/src/j2me/io/DataInput.java
rhodes-3.3.0.beta.3 platform/bb/RubyVM/src/j2me/io/DataInput.java