db4o

StoredField.get Method 

returns the field value on the passed object.

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

Remarks

returns the field value on the passed object.

This method will also work, if the field is not present in the current version of the class.

It is recommended to use this method for refactoring purposes, if fields are removed and the field values need to be copied to other fields.

See Also

StoredField Interface | com.db4o.ext Namespace