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