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