i.ConstantToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaee-rt Show documentation
Show all versions of javaee-rt Show documentation
An Execution Environment for Java SCOREs
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