Package org.apache.openjpa.enhance
Interface FieldSupplier
-
- All Known Subinterfaces:
FieldManager,OpenJPAStateManager
- All Known Implementing Classes:
DetachedStateManager,DetachedValueStateManager,ObjectIdStateManager,SaveFieldManager,StateManagerImpl
public interface FieldSupplierSupplies persistent field values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanfetchBooleanField(int fieldIndex)Return the value of the given field.bytefetchByteField(int fieldIndex)Return the value of the given field.charfetchCharField(int fieldIndex)Return the value of the given field.doublefetchDoubleField(int fieldIndex)Return the value of the given field.floatfetchFloatField(int fieldIndex)Return the value of the given field.intfetchIntField(int fieldIndex)Return the value of the given field.longfetchLongField(int fieldIndex)Return the value of the given field.java.lang.ObjectfetchObjectField(int fieldIndex)Return the value of the given field.shortfetchShortField(int fieldIndex)Return the value of the given field.java.lang.StringfetchStringField(int fieldIndex)Return the value of the given field.
-
-
-
Method Detail
-
fetchBooleanField
boolean fetchBooleanField(int fieldIndex)
Return the value of the given field.
-
fetchCharField
char fetchCharField(int fieldIndex)
Return the value of the given field.
-
fetchByteField
byte fetchByteField(int fieldIndex)
Return the value of the given field.
-
fetchShortField
short fetchShortField(int fieldIndex)
Return the value of the given field.
-
fetchIntField
int fetchIntField(int fieldIndex)
Return the value of the given field.
-
fetchLongField
long fetchLongField(int fieldIndex)
Return the value of the given field.
-
fetchFloatField
float fetchFloatField(int fieldIndex)
Return the value of the given field.
-
fetchDoubleField
double fetchDoubleField(int fieldIndex)
Return the value of the given field.
-
fetchStringField
java.lang.String fetchStringField(int fieldIndex)
Return the value of the given field.
-
fetchObjectField
java.lang.Object fetchObjectField(int fieldIndex)
Return the value of the given field.
-
-