db4o

StoredClass.storedField Method 

returns an existing stored field of this stored class.

[Visual Basic]
Function storedField( _ 
   ByVal name As String, _ 
   ByVal type As Object _ 
) As StoredField
[C#]
StoredField storedField(
   string name,
   object type
);
[C++]
StoredField* storedField(
   String* name,
   Object* type
);
[JScript]
function storedField(
   String name,
   Object type
): StoredField;

Parameters

name
the name of the field
type
the type of the field. There are four possibilities how to supply the type:
- a Class object. (.NET: a Type object)
- a fully qualified classname.
- any object to be used as a template.

- null, if the first found field should be returned.

Return Value

the com.db4o.ext.StoredField

Remarks

returns an existing stored field of this stored class.

See Also

StoredClass Interface | com.db4o.ext Namespace