Interface FieldConsumer
-
- All Known Subinterfaces:
FieldManager
- All Known Implementing Classes:
AbstractFetchDepthFieldManager,AbstractFetchFieldManager,AbstractFieldManager,AbstractStoreFieldManager,AppIdObjectIdFieldConsumer,AttachFieldManager,DeleteFieldManager,DetachFieldManager,L2CachePopulateFieldManager,L2CacheRetrieveFieldManager,LoadFieldManager,MakeTransientFieldManager,NullifyRelationFieldManager,PersistFieldManager,ReachabilityFieldManager,SingleTypeFieldManager,SingleValueFieldManager,UnsetOwnerFieldManager
public interface FieldConsumerInterface providing methods for consuming field values from a persistable object. Based on the JDO interface PersistenceCapable.ObjectIdFieldConsumer. TODO Drop this when Persistable is used
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidstoreBooleanField(int fieldNumber, boolean value)Method to store a boolean field value in the object at the specified field position.voidstoreByteField(int fieldNumber, byte value)Method to store a byte field value in the object at the specified field position.voidstoreCharField(int fieldNumber, char value)Method to store a char field value in the object at the specified field position.voidstoreDoubleField(int fieldNumber, double value)Method to store a double field value in the object at the specified field position.voidstoreFloatField(int fieldNumber, float value)Method to store a float field value in the object at the specified field position.voidstoreIntField(int fieldNumber, int value)Method to store an int field value in the object at the specified field position.voidstoreLongField(int fieldNumber, long value)Method to store a long field value in the object at the specified field position.voidstoreObjectField(int fieldNumber, Object value)Method to store an object field value in the object at the specified field position.voidstoreShortField(int fieldNumber, short value)Method to store a short field value in the object at the specified field position.voidstoreStringField(int fieldNumber, String value)Method to store a string field value in the object at the specified field position.
-
-
-
Method Detail
-
storeBooleanField
void storeBooleanField(int fieldNumber, boolean value)Method to store a boolean field value in the object at the specified field position.- Parameters:
fieldNumber- Number of the fieldvalue- value to store
-
storeByteField
void storeByteField(int fieldNumber, byte value)Method to store a byte field value in the object at the specified field position.- Parameters:
fieldNumber- Number of the fieldvalue- value to store
-
storeCharField
void storeCharField(int fieldNumber, char value)Method to store a char field value in the object at the specified field position.- Parameters:
fieldNumber- Number of the fieldvalue- value to store
-
storeDoubleField
void storeDoubleField(int fieldNumber, double value)Method to store a double field value in the object at the specified field position.- Parameters:
fieldNumber- Number of the fieldvalue- value to store
-
storeFloatField
void storeFloatField(int fieldNumber, float value)Method to store a float field value in the object at the specified field position.- Parameters:
fieldNumber- Number of the fieldvalue- value to store
-
storeIntField
void storeIntField(int fieldNumber, int value)Method to store an int field value in the object at the specified field position.- Parameters:
fieldNumber- Number of the fieldvalue- value to store
-
storeLongField
void storeLongField(int fieldNumber, long value)Method to store a long field value in the object at the specified field position.- Parameters:
fieldNumber- Number of the fieldvalue- value to store
-
storeShortField
void storeShortField(int fieldNumber, short value)Method to store a short field value in the object at the specified field position.- Parameters:
fieldNumber- Number of the fieldvalue- value to store
-
storeStringField
void storeStringField(int fieldNumber, String value)Method to store a string field value in the object at the specified field position.- Parameters:
fieldNumber- Number of the fieldvalue- value to store
-
storeObjectField
void storeObjectField(int fieldNumber, Object value)Method to store an object field value in the object at the specified field position.- Parameters:
fieldNumber- Number of the fieldvalue- value to store
-
-