Package org.apache.openjpa.enhance
Interface FieldConsumer
- All Known Subinterfaces:
FieldManager
,OpenJPAStateManager
- All Known Implementing Classes:
DetachedStateManager
,DetachedValueStateManager
,ObjectIdStateManager
,SaveFieldManager
,StateManagerImpl
public interface FieldConsumer
Consumes persistent field values.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
storeBooleanField
(int fieldIndex, boolean value) Set the value of the given field.void
storeByteField
(int fieldIndex, byte value) Set the value of the given field.void
storeCharField
(int fieldIndex, char value) Set the value of the given field.void
storeDoubleField
(int fieldIndex, double value) Set the value of the given field.void
storeFloatField
(int fieldIndex, float value) Set the value of the given field.void
storeIntField
(int fieldIndex, int value) Set the value of the given field.void
storeLongField
(int fieldIndex, long value) Set the value of the given field.void
storeObjectField
(int fieldIndex, Object value) Set the value of the given field.void
storeShortField
(int fieldIndex, short value) Set the value of the given field.void
storeStringField
(int fieldIndex, String value) Set the value of the given field.
-
Method Details
-
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
Set the value of the given field. -
storeObjectField
Set the value of the given field.
-