db4o

ExtObjectContainer.getByUUID Method 

returns a stored object for a com.db4o.ext.Db4oUUID .

This method is intended for replication and for long-term external references to objects. To get a com.db4o.ext.Db4oUUID for an object use com.db4o.ext.ExtObjectContainer.getObjectInfo and com.db4o.ext.ObjectInfo.getUUID .

Objects will not be activated by this method. They will be returned in the activation state they are currently in, in the local cache.

[Visual Basic]
Function getByUUID( _ 
   ByVal uuid As Db4oUUID _ 
) As Object
[C#]
object getByUUID(
   Db4oUUID uuid
);
[C++]
Object* getByUUID(
   Db4oUUID* uuid
);
[JScript]
function getByUUID(
   Db4oUUID uuid
): Object;

Parameters

uuid
the UUID

Return Value

the object for the UUID

See Also

ExtObjectContainer Interface | com.db4o.ext Namespace | Why activation?