PersistenceCapable.ObjectIdFieldManager
public static interface PersistenceCapable.ObjectIdFieldConsumer
Modifier and Type | Method | Description |
---|---|---|
void |
storeBooleanField(int fieldNumber,
boolean value) |
Store one field into the field manager.
|
void |
storeByteField(int fieldNumber,
byte value) |
Store one field into the field manager.
|
void |
storeCharField(int fieldNumber,
char value) |
Store one field into the field manager.
|
void |
storeDoubleField(int fieldNumber,
double value) |
Store one field into the field manager.
|
void |
storeFloatField(int fieldNumber,
float value) |
Store one field into the field manager.
|
void |
storeIntField(int fieldNumber,
int value) |
Store one field into the field manager.
|
void |
storeLongField(int fieldNumber,
long value) |
Store one field into the field manager.
|
void |
storeObjectField(int fieldNumber,
java.lang.Object value) |
Store one field into the field manager.
|
void |
storeShortField(int fieldNumber,
short value) |
Store one field into the field manager.
|
void |
storeStringField(int fieldNumber,
java.lang.String value) |
Store one field into the field manager.
|
void storeBooleanField(int fieldNumber, boolean value)
fieldNumber
- the field number of the key field.value
- the value of the field from the ObjectId.void storeCharField(int fieldNumber, char value)
fieldNumber
- the field number of the key field.value
- the value of the field from the ObjectId.void storeByteField(int fieldNumber, byte value)
fieldNumber
- the field number of the key field.value
- the value of the field from the ObjectId.void storeShortField(int fieldNumber, short value)
fieldNumber
- the field number of the key field.value
- the value of the field from the ObjectId.void storeIntField(int fieldNumber, int value)
fieldNumber
- the field number of the key field.value
- the value of the field from the ObjectId.void storeLongField(int fieldNumber, long value)
fieldNumber
- the field number of the key field.value
- the value of the field from the ObjectId.void storeFloatField(int fieldNumber, float value)
fieldNumber
- the field number of the key field.value
- the value of the field from the ObjectId.void storeDoubleField(int fieldNumber, double value)
fieldNumber
- the field number of the key field.value
- the value of the field from the ObjectId.void storeStringField(int fieldNumber, java.lang.String value)
fieldNumber
- the field number of the key field.value
- the value of the field from the ObjectId.void storeObjectField(int fieldNumber, java.lang.Object value)
fieldNumber
- the field number of the key field.value
- the value of the field from the ObjectId.