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

prompto.compiler.ByteOperand Maven / Gradle / Ivy

The newest version!
package prompto.compiler;

public class ByteOperand implements IInlineOperand {

	byte value;
	
	public ByteOperand(byte value) {
		this.value = value;
	}

	public byte value() {
		return value;
	}
	
	@Override
	public String toString() {
		return String.valueOf(value);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy