byte
.
Modifier and type | Action and description |
---|---|
static boolean | operator_equals(byte,Number) The binary equals operator. |
static boolean | operator_greaterEqualsThan(byte,Number) The binary greaterEqualsThan operator. |
static boolean | operator_greaterThan(byte,Number) The binary greaterThan operator. |
static boolean | operator_lessEqualsThan(byte,Number) The binary lessEqualsThan operator. |
static boolean | operator_lessThan(byte,Number) The binary lessThan operator. |
static boolean | operator_notEquals(byte,Number) The binary notEquals operator. |
static int | operator_spaceship(byte,byte) The number comparison operator. |
static int | operator_spaceship(byte,short) The number comparison operator. |
static int | operator_spaceship(byte,int) The number comparison operator. |
static int | operator_spaceship(byte,long) The number comparison operator. |
static int | operator_spaceship(byte,float) The number comparison operator. |
static int | operator_spaceship(byte,double) The number comparison operator. |
static int | operator_spaceship(byte,Byte) The number comparison operator. |
static int | operator_spaceship(byte,Double) The number comparison operator. |
static int | operator_spaceship(byte,Float) The number comparison operator. |
static int | operator_spaceship(byte,Integer) The number comparison operator. |
static int | operator_spaceship(byte,Long) The number comparison operator. |
static int | operator_spaceship(byte,Number) The number comparison operator. |
static int | operator_spaceship(byte,Short) The number comparison operator. |
static int | operator_spaceship(byte,AtomicInteger) The number comparison operator. |
static int | operator_spaceship(byte,AtomicLong) The number comparison operator. |
def operator_equals(byte,Number) : boolean
equals
operator. This is the equivalent to the Java ==
operator. This function is null-safe.
def operator_greaterEqualsThan(byte,Number) : boolean
greaterEqualsThan
operator. This is the equivalent to the Java >=
operator. This function is not null-safe.
def operator_greaterThan(byte,Number) : boolean
greaterThan
operator. This is the equivalent to the Java >
operator. This function is not null-safe.
def operator_lessEqualsThan(byte,Number) : boolean
lessEqualsThan
operator. This is the equivalent to the Java <=
operator. This function is not null-safe.
def operator_lessThan(byte,Number) : boolean
lessThan
operator. This is the equivalent to the Java <
operator. This function is not null-safe.
def operator_notEquals(byte,Number) : boolean
notEquals
operator. This is the equivalent to the Java !=
operator. This function is null-safe.
def operator_spaceship(byte,byte) : int
compareTo
function on numbers. This function is null-safe.
def operator_spaceship(byte,short) : int
compareTo
function on numbers. This function is null-safe.
def operator_spaceship(byte,int) : int
compareTo
function on numbers. This function is null-safe.
def operator_spaceship(byte,long) : int
compareTo
function on numbers. This function is null-safe.
def operator_spaceship(byte,float) : int
compareTo
function on numbers. This function is null-safe.
def operator_spaceship(byte,double) : int
compareTo
function on numbers. This function is null-safe.
def operator_spaceship(byte,Byte) : int
compareTo
function on numbers. This function is null-safe.
def operator_spaceship(byte,Double) : int
compareTo
function on numbers. This function is null-safe.
def operator_spaceship(byte,Float) : int
compareTo
function on numbers. This function is null-safe.
def operator_spaceship(byte,Integer) : int
compareTo
function on numbers. This function is null-safe.
def operator_spaceship(byte,Long) : int
compareTo
function on numbers. This function is null-safe.
def operator_spaceship(byte,Number) : int
compareTo
function on numbers. This function is null-safe.
def operator_spaceship(byte,Short) : int
compareTo
function on numbers. This function is null-safe.
def operator_spaceship(byte,AtomicInteger) : int
compareTo
function on numbers. This function is null-safe.
def operator_spaceship(byte,AtomicLong) : int
compareTo
function on numbers. This function is null-safe.