• Prev Type
  • Next Type

io.sarl.lang.core.scoping.extensions.uuid
Class UUIDExtensions
@com.google.common.annotations.GwtCompatible
final class UUIDExtensions
extends java.lang.Object
Static methods to add to the scope of UUID.
Maven Group Identifier:
io.sarl.lang
Maven Artifact Identifier:
core
Since:
0.14
Action Summary
Modifier and type Action and description
static boolean operator_equals(UUID,Address)
Replies if the given identifier is equal to the identifier in the given identifier.
static boolean operator_notEquals(UUID,Address)
Replies if the given identifier is not equal to the identifier in the given identifier.
Action Details
operator_equals(UUID,Address)
def operator_equals(UUID,Address) : boolean
Replies if the given identifier is equal to the identifier in the given identifier. It is equivalent to id.equals(address.getID()).
Parameters:
id - the identifier to test.
address - the address to test.
Returns:
true if the identifier is equal to the address' identifier.
operator_notEquals(UUID,Address)
def operator_notEquals(UUID,Address) : boolean
Replies if the given identifier is not equal to the identifier in the given identifier. It is equivalent to !id.equals(address.getID()).
Parameters:
id - the identifier to test.
address - the address to test.
Returns:
false if the identifier is equal to the address' identifier.