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

net.minestom.server.utils.math.ByteRange Maven / Gradle / Ivy

There is a newer version: 7320437640
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy