Methods Summary |
---|
public void | jdoClear()Clears the fields of each persistent field.
This method stores zero or null values into each persistent
field of the instance, in effect reverting it to its initial
state. Clearing fields allows objects referred to by this
instance to be garbage collected. The associated StateManager
calls this method when transitioning an instance to the hollow
state. This will normally be during post completion.
|
public java.lang.Object | jdoGetField(int fieldNumber)Returns the value of the specified field.
Primitive valued fields are wrapped with the corresponding
Object wrapper type.
|
public byte | jdoGetFlags()Returns the value of the JDO flags.
|
public StateManager | jdoGetStateManager()Returns the associated state manager.
|
public java.lang.Object | jdoNewInstance(StateManager statemanager)Creates an instance of the same class as this object.
|
public void | jdoSetField(int fieldNumber, java.lang.Object value)Sets the value of the specified field.
Primitive valued fields are wrapped with the corresponding
Object wrapper type.
|
public void | jdoSetFlags(byte flags)Sets the value of the JDO flags, and returns the previous value.
|
public void | jdoSetStateManager(StateManager sm)Sets the associated state manager.
|