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