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