| org.jpox.store.fieldmanager.FieldSupplier
FieldSupplier | public interface FieldSupplier (Code) | | Interface providing methods for supplying field values to a persistable object.
Based on the JDO interface PersistenceCapable.ObjectIdFieldSupplier.
version: $Revision: 1.1 $ |
Method Summary | |
boolean | fetchBooleanField(int fieldNumber) Fetch a boolean field at the specified field number, returning it. | byte | fetchByteField(int fieldNumber) Fetch a byte field at the specified field number, returning it. | char | fetchCharField(int fieldNumber) Fetch a char field at the specified field number, returning it. | double | fetchDoubleField(int fieldNumber) Fetch a double field at the specified field number, returning it. | float | fetchFloatField(int fieldNumber) Fetch a float field at the specified field number, returning it. | int | fetchIntField(int fieldNumber) Fetch an int field at the specified field number, returning it. | long | fetchLongField(int fieldNumber) Fetch a long field at the specified field number, returning it. | Object | fetchObjectField(int fieldNumber) Fetch an object field at the specified field number, returning it. | short | fetchShortField(int fieldNumber) Fetch a short field at the specified field number, returning it. | String | fetchStringField(int fieldNumber) Fetch a string field at the specified field number, returning it. |
fetchBooleanField | boolean fetchBooleanField(int fieldNumber)(Code) | | Fetch a boolean field at the specified field number, returning it.
Parameters: fieldNumber - Number of the field The value |
fetchByteField | byte fetchByteField(int fieldNumber)(Code) | | Fetch a byte field at the specified field number, returning it.
Parameters: fieldNumber - Number of the field The value |
fetchCharField | char fetchCharField(int fieldNumber)(Code) | | Fetch a char field at the specified field number, returning it.
Parameters: fieldNumber - Number of the field The value |
fetchDoubleField | double fetchDoubleField(int fieldNumber)(Code) | | Fetch a double field at the specified field number, returning it.
Parameters: fieldNumber - Number of the field The value |
fetchFloatField | float fetchFloatField(int fieldNumber)(Code) | | Fetch a float field at the specified field number, returning it.
Parameters: fieldNumber - Number of the field The value |
fetchIntField | int fetchIntField(int fieldNumber)(Code) | | Fetch an int field at the specified field number, returning it.
Parameters: fieldNumber - Number of the field The value |
fetchLongField | long fetchLongField(int fieldNumber)(Code) | | Fetch a long field at the specified field number, returning it.
Parameters: fieldNumber - Number of the field The value |
fetchObjectField | Object fetchObjectField(int fieldNumber)(Code) | | Fetch an object field at the specified field number, returning it.
Parameters: fieldNumber - Number of the field The value |
fetchShortField | short fetchShortField(int fieldNumber)(Code) | | Fetch a short field at the specified field number, returning it.
Parameters: fieldNumber - Number of the field The value |
fetchStringField | String fetchStringField(int fieldNumber)(Code) | | Fetch a string field at the specified field number, returning it.
Parameters: fieldNumber - Number of the field The value |
|
|