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

i.ConstantToken Maven / Gradle / Ivy

There is a newer version: 0.9.6
Show newest version
package i;

public class ConstantToken {

    public final int constantId;

    public ConstantToken(int constantId) {
        this.constantId = constantId;
    }

    public static int getReadIndexFromConstantId(int constantId){
        return (-1 * constantId) - 1;
    }

    public static int getConstantIdFromReadIndex(int readIndex){
        return (-1 * readIndex) - 1;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy