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

org.unlaxer.jaddress.entity.standard.ByteNumber Maven / Gradle / Ivy

The newest version!
package org.unlaxer.jaddress.entity.standard;

public interface ByteNumber extends NumberCode{
	
	byte code();

	@Override
	public default long  codeAsLong() {
		return (long) code();
	}

	@Override
	public default int codeAsInt() {
		return (int) code();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy