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