cn.nukkit.api.Unsigned Maven / Gradle / Ivy
/*
* https://PowerNukkit.org - The Nukkit you know but Powerful!
* Copyright (C) 2020 José Roberto de Araújo Júnior
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package cn.nukkit.api;
import javax.annotation.meta.TypeQualifier;
import java.lang.annotation.Documented;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Indicates that the number may be negative in raw form but must be treated as an unsigned value by
* considering the sign bit as part of the number.
*
* @author joserobjr
* @since 2020-10-11
*/
@PowerNukkitOnly
@Since("1.4.0.0-PN")
@TypeQualifier(applicableTo = Number.class)
@Retention(RetentionPolicy.CLASS)
@Documented
@Inherited
public @interface Unsigned {
}