All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.leialearns.api.common.PrefixDecoder Maven / Gradle / Ivy

The newest version!
package org.leialearns.api.common;

import java.io.Closeable;
import java.math.BigInteger;

public interface PrefixDecoder extends Closeable {
    int nextInt();
    long nextLong();
    BigInteger nextBigInteger();
    int nextInt(int length);
    long nextLong(int length);
    BigInteger nextBigInteger(int length);
    String nextString();
    boolean nextBoolean();
    > E nextEnum(Class type);
     void addHelper(T helper, Class type);
     T getHelper(Class type);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy