
net.minestom.server.utils.math.ByteRange Maven / Gradle / Ivy
package net.minestom.server.utils.math;
public class ByteRange extends Range {
public ByteRange(Byte minimum, Byte maximum) {
super(minimum, maximum);
}
public ByteRange(Byte value) {
super(value);
}
/**
* {@inheritDoc}
*/
@Override
public boolean isInRange(Byte value) {
return value >= this.getMinimum() && value <= this.getMaximum();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy