Package org.apache.openjpa.enhance
Interface FieldConsumer
- 
- All Known Subinterfaces:
 FieldManager,OpenJPAStateManager
- All Known Implementing Classes:
 DetachedStateManager,DetachedValueStateManager,ObjectIdStateManager,SaveFieldManager,StateManagerImpl
public interface FieldConsumerConsumes persistent field values. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidstoreBooleanField(int fieldIndex, boolean value)Set the value of the given field.voidstoreByteField(int fieldIndex, byte value)Set the value of the given field.voidstoreCharField(int fieldIndex, char value)Set the value of the given field.voidstoreDoubleField(int fieldIndex, double value)Set the value of the given field.voidstoreFloatField(int fieldIndex, float value)Set the value of the given field.voidstoreIntField(int fieldIndex, int value)Set the value of the given field.voidstoreLongField(int fieldIndex, long value)Set the value of the given field.voidstoreObjectField(int fieldIndex, java.lang.Object value)Set the value of the given field.voidstoreShortField(int fieldIndex, short value)Set the value of the given field.voidstoreStringField(int fieldIndex, java.lang.String value)Set the value of the given field. 
 - 
 
- 
- 
Method Detail
- 
storeBooleanField
void storeBooleanField(int fieldIndex, boolean value)Set the value of the given field. 
- 
storeCharField
void storeCharField(int fieldIndex, char value)Set the value of the given field. 
- 
storeByteField
void storeByteField(int fieldIndex, byte value)Set the value of the given field. 
- 
storeShortField
void storeShortField(int fieldIndex, short value)Set the value of the given field. 
- 
storeIntField
void storeIntField(int fieldIndex, int value)Set the value of the given field. 
- 
storeLongField
void storeLongField(int fieldIndex, long value)Set the value of the given field. 
- 
storeFloatField
void storeFloatField(int fieldIndex, float value)Set the value of the given field. 
- 
storeDoubleField
void storeDoubleField(int fieldIndex, double value)Set the value of the given field. 
- 
storeStringField
void storeStringField(int fieldIndex, java.lang.String value)Set the value of the given field. 
- 
storeObjectField
void storeObjectField(int fieldIndex, java.lang.Object value)Set the value of the given field. 
 - 
 
 -