io.sarl.lang.core.scoping.extensions.numbers.comparison
Class AtomicLongComparisonExtensions
final class AtomicLongComparisonExtensions
extends java.lang.Object
Provide static comparison operators for numbers of type AtomicLong.
Maven Group Identifier:
io.sarl.lang
Maven Artifact Identifier:
core
Since:
0.7
See:
"https://github.com/eclipse/xtext-extras/issues/186"
Action Summary
Modifier and type Action and description
static boolean operator_equals(AtomicLong,long)
The binary equals operator.
static boolean operator_equals(AtomicLong,byte)
The binary equals operator.
static boolean operator_equals(AtomicLong,int)
The binary equals operator.
static boolean operator_equals(AtomicLong,short)
The binary equals operator.
static boolean operator_equals(AtomicLong,double)
The binary equals operator.
static boolean operator_equals(AtomicLong,float)
The binary equals operator.
static boolean operator_equals(AtomicLong,Number)
The binary equals operator.
static boolean operator_greaterEqualsThan(AtomicLong,long)
The binary greaterEqualsThan operator.
static boolean operator_greaterEqualsThan(AtomicLong,byte)
The binary greaterEqualsThan operator.
static boolean operator_greaterEqualsThan(AtomicLong,int)
The binary greaterEqualsThan operator.
static boolean operator_greaterEqualsThan(AtomicLong,short)
The binary greaterEqualsThan operator.
static boolean operator_greaterEqualsThan(AtomicLong,double)
The binary greaterEqualsThan operator.
static boolean operator_greaterEqualsThan(AtomicLong,float)
The binary greaterEqualsThan operator.
static boolean operator_greaterEqualsThan(AtomicLong,Number)
The binary greaterEqualsThan operator.
static boolean operator_greaterThan(AtomicLong,long)
The binary greaterThan operator.
static boolean operator_greaterThan(AtomicLong,byte)
The binary greaterThan operator.
static boolean operator_greaterThan(AtomicLong,int)
The binary greaterThan operator.
static boolean operator_greaterThan(AtomicLong,short)
The binary greaterThan operator.
static boolean operator_greaterThan(AtomicLong,double)
The binary greaterThan operator.
static boolean operator_greaterThan(AtomicLong,float)
The binary greaterThan operator.
static boolean operator_greaterThan(AtomicLong,Number)
The binary greaterThan operator.
static boolean operator_lessEqualsThan(AtomicLong,long)
The binary lessEqualsThan operator.
static boolean operator_lessEqualsThan(AtomicLong,byte)
The binary lessEqualsThan operator.
static boolean operator_lessEqualsThan(AtomicLong,int)
The binary lessEqualsThan operator.
static boolean operator_lessEqualsThan(AtomicLong,short)
The binary lessEqualsThan operator.
static boolean operator_lessEqualsThan(AtomicLong,double)
The binary lessEqualsThan operator.
static boolean operator_lessEqualsThan(AtomicLong,float)
The binary lessEqualsThan operator.
static boolean operator_lessEqualsThan(AtomicLong,Number)
The binary lessEqualsThan operator.
static boolean operator_lessThan(AtomicLong,long)
The binary lessThan operator.
static boolean operator_lessThan(AtomicLong,byte)
The binary lessThan operator.
static boolean operator_lessThan(AtomicLong,int)
The binary lessThan operator.
static boolean operator_lessThan(AtomicLong,short)
The binary lessThan operator.
static boolean operator_lessThan(AtomicLong,double)
The binary lessThan operator.
static boolean operator_lessThan(AtomicLong,float)
The binary lessThan operator.
static boolean operator_lessThan(AtomicLong,Number)
The binary lessThan operator.
static boolean operator_notEquals(AtomicLong,long)
The binary notEquals operator.
static boolean operator_notEquals(AtomicLong,byte)
The binary notEquals operator.
static boolean operator_notEquals(AtomicLong,int)
The binary notEquals operator.
static boolean operator_notEquals(AtomicLong,short)
The binary notEquals operator.
static boolean operator_notEquals(AtomicLong,double)
The binary notEquals operator.
static boolean operator_notEquals(AtomicLong,float)
The binary notEquals operator.
static boolean operator_notEquals(AtomicLong,Number)
The binary notEquals operator.
Action Details
operator_equals(AtomicLong,long)
def operator_equals(AtomicLong,long) : boolean
The binary equals operator. This is the equivalent to the Java == operator. This function is null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left==right
operator_equals(AtomicLong,byte)
def operator_equals(AtomicLong,byte) : boolean
The binary equals operator. This is the equivalent to the Java == operator. This function is null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left==right
operator_equals(AtomicLong,int)
def operator_equals(AtomicLong,int) : boolean
The binary equals operator. This is the equivalent to the Java == operator. This function is null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left==right
operator_equals(AtomicLong,short)
def operator_equals(AtomicLong,short) : boolean
The binary equals operator. This is the equivalent to the Java == operator. This function is null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left==right
operator_equals(AtomicLong,double)
def operator_equals(AtomicLong,double) : boolean
The binary equals operator. This is the equivalent to the Java == operator. This function is null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left==right
operator_equals(AtomicLong,float)
def operator_equals(AtomicLong,float) : boolean
The binary equals operator. This is the equivalent to the Java == operator. This function is null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left==right
operator_equals(AtomicLong,Number)
def operator_equals(AtomicLong,Number) : boolean
The binary equals operator. This is the equivalent to the Java == operator. This function is null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left==right
operator_greaterEqualsThan(AtomicLong,long)
def operator_greaterEqualsThan(AtomicLong,long) : boolean
The binary greaterEqualsThan operator. This is the equivalent to the Java >= operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left>=right
operator_greaterEqualsThan(AtomicLong,byte)
def operator_greaterEqualsThan(AtomicLong,byte) : boolean
The binary greaterEqualsThan operator. This is the equivalent to the Java >= operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left>=right
operator_greaterEqualsThan(AtomicLong,int)
def operator_greaterEqualsThan(AtomicLong,int) : boolean
The binary greaterEqualsThan operator. This is the equivalent to the Java >= operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left>=right
operator_greaterEqualsThan(AtomicLong,short)
def operator_greaterEqualsThan(AtomicLong,short) : boolean
The binary greaterEqualsThan operator. This is the equivalent to the Java >= operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left>=right
operator_greaterEqualsThan(AtomicLong,double)
def operator_greaterEqualsThan(AtomicLong,double) : boolean
The binary greaterEqualsThan operator. This is the equivalent to the Java >= operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left>=right
operator_greaterEqualsThan(AtomicLong,float)
def operator_greaterEqualsThan(AtomicLong,float) : boolean
The binary greaterEqualsThan operator. This is the equivalent to the Java >= operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left>=right
operator_greaterEqualsThan(AtomicLong,Number)
def operator_greaterEqualsThan(AtomicLong,Number) : boolean
The binary greaterEqualsThan operator. This is the equivalent to the Java >= operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left>=right
operator_greaterThan(AtomicLong,long)
def operator_greaterThan(AtomicLong,long) : boolean
The binary greaterThan operator. This is the equivalent to the Java > operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left>right
operator_greaterThan(AtomicLong,byte)
def operator_greaterThan(AtomicLong,byte) : boolean
The binary greaterThan operator. This is the equivalent to the Java > operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left>right
operator_greaterThan(AtomicLong,int)
def operator_greaterThan(AtomicLong,int) : boolean
The binary greaterThan operator. This is the equivalent to the Java > operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left>right
operator_greaterThan(AtomicLong,short)
def operator_greaterThan(AtomicLong,short) : boolean
The binary greaterThan operator. This is the equivalent to the Java > operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left>right
operator_greaterThan(AtomicLong,double)
def operator_greaterThan(AtomicLong,double) : boolean
The binary greaterThan operator. This is the equivalent to the Java > operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left>right
operator_greaterThan(AtomicLong,float)
def operator_greaterThan(AtomicLong,float) : boolean
The binary greaterThan operator. This is the equivalent to the Java > operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left>right
operator_greaterThan(AtomicLong,Number)
def operator_greaterThan(AtomicLong,Number) : boolean
The binary greaterThan operator. This is the equivalent to the Java > operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left>right
operator_lessEqualsThan(AtomicLong,long)
def operator_lessEqualsThan(AtomicLong,long) : boolean
The binary lessEqualsThan operator. This is the equivalent to the Java <= operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left<=right
operator_lessEqualsThan(AtomicLong,byte)
def operator_lessEqualsThan(AtomicLong,byte) : boolean
The binary lessEqualsThan operator. This is the equivalent to the Java <= operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left<=right
operator_lessEqualsThan(AtomicLong,int)
def operator_lessEqualsThan(AtomicLong,int) : boolean
The binary lessEqualsThan operator. This is the equivalent to the Java <= operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left<=right
operator_lessEqualsThan(AtomicLong,short)
def operator_lessEqualsThan(AtomicLong,short) : boolean
The binary lessEqualsThan operator. This is the equivalent to the Java <= operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left<=right
operator_lessEqualsThan(AtomicLong,double)
def operator_lessEqualsThan(AtomicLong,double) : boolean
The binary lessEqualsThan operator. This is the equivalent to the Java <= operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left<=right
operator_lessEqualsThan(AtomicLong,float)
def operator_lessEqualsThan(AtomicLong,float) : boolean
The binary lessEqualsThan operator. This is the equivalent to the Java <= operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left<=right
operator_lessEqualsThan(AtomicLong,Number)
def operator_lessEqualsThan(AtomicLong,Number) : boolean
The binary lessEqualsThan operator. This is the equivalent to the Java <= operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left<=right
operator_lessThan(AtomicLong,long)
def operator_lessThan(AtomicLong,long) : boolean
The binary lessThan operator. This is the equivalent to the Java < operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left<right
operator_lessThan(AtomicLong,byte)
def operator_lessThan(AtomicLong,byte) : boolean
The binary lessThan operator. This is the equivalent to the Java < operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left<right
operator_lessThan(AtomicLong,int)
def operator_lessThan(AtomicLong,int) : boolean
The binary lessThan operator. This is the equivalent to the Java < operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left<right
operator_lessThan(AtomicLong,short)
def operator_lessThan(AtomicLong,short) : boolean
The binary lessThan operator. This is the equivalent to the Java < operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left<right
operator_lessThan(AtomicLong,double)
def operator_lessThan(AtomicLong,double) : boolean
The binary lessThan operator. This is the equivalent to the Java < operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left<right
operator_lessThan(AtomicLong,float)
def operator_lessThan(AtomicLong,float) : boolean
The binary lessThan operator. This is the equivalent to the Java < operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left<right
operator_lessThan(AtomicLong,Number)
def operator_lessThan(AtomicLong,Number) : boolean
The binary lessThan operator. This is the equivalent to the Java < operator. This function is not null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left<right
operator_notEquals(AtomicLong,long)
def operator_notEquals(AtomicLong,long) : boolean
The binary notEquals operator. This is the equivalent to the Java != operator. This function is null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left!=right
operator_notEquals(AtomicLong,byte)
def operator_notEquals(AtomicLong,byte) : boolean
The binary notEquals operator. This is the equivalent to the Java != operator. This function is null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left!=right
operator_notEquals(AtomicLong,int)
def operator_notEquals(AtomicLong,int) : boolean
The binary notEquals operator. This is the equivalent to the Java != operator. This function is null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left!=right
operator_notEquals(AtomicLong,short)
def operator_notEquals(AtomicLong,short) : boolean
The binary notEquals operator. This is the equivalent to the Java != operator. This function is null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left!=right
operator_notEquals(AtomicLong,double)
def operator_notEquals(AtomicLong,double) : boolean
The binary notEquals operator. This is the equivalent to the Java != operator. This function is null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left!=right
operator_notEquals(AtomicLong,float)
def operator_notEquals(AtomicLong,float) : boolean
The binary notEquals operator. This is the equivalent to the Java != operator. This function is null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left!=right
operator_notEquals(AtomicLong,Number)
def operator_notEquals(AtomicLong,Number) : boolean
The binary notEquals operator. This is the equivalent to the Java != operator. This function is null-safe.
Parameters:
left - a number.
right - a number.
Returns:
left!=right