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