com.g2forge.alexandria.java.identity.SameIdentity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-java Show documentation
Show all versions of ax-java Show documentation
Standard Java library and the basis of the ${alexandria.name} project.
package com.g2forge.alexandria.java.identity;
import com.g2forge.alexandria.java.core.iface.ISingleton;
/**
* Identity based on same-ness of objects. Two objects must literally be the same object (not just have similar field values or something) in memory for this
* identity to consider them equal.
*
* @see StandardIdentity
* @see IIdentity#same()
*/
public class SameIdentity implements IIdentity