public interface FieldManager
Modifier and Type | Method and Description |
---|---|
boolean |
fetchBooleanField(int fieldNum) |
byte |
fetchByteField(int fieldNum) |
char |
fetchCharField(int fieldNum) |
double |
fetchDoubleField(int fieldNum) |
float |
fetchFloatField(int fieldNum) |
int |
fetchIntField(int fieldNum) |
long |
fetchLongField(int fieldNum) |
java.lang.Object |
fetchObjectField(int fieldNum) |
short |
fetchShortField(int fieldNum) |
java.lang.String |
fetchStringField(int fieldNum) |
void |
storeBooleanField(int fieldNum,
boolean value)
Provides the means by which the value of a boolean field can be given
by a StateManager to an object that needs the value.
|
void |
storeByteField(int fieldNum,
byte value)
Provides the means by which the value of a byte field can be given
by a StateManager to an object that needs the value.
|
void |
storeCharField(int fieldNum,
char value)
Provides the means by which the value of a char field can be given
by a StateManager to an object that needs the value.
|
void |
storeDoubleField(int fieldNum,
double value)
Provides the means by which the value of a double field can be given
by a StateManager to an object that needs the value.
|
void |
storeFloatField(int fieldNum,
float value)
Provides the means by which the value of a field can be given
by a StateManager to an object that needs the value.
|
void |
storeIntField(int fieldNum,
int value)
Provides the means by which the value of a int field can be given
by a StateManager to an object that needs the value.
|
void |
storeLongField(int fieldNum,
long value)
Provides the means by which the value of a long field can be given
by a StateManager to an object that needs the value.
|
void |
storeObjectField(int fieldNum,
java.lang.Object value)
Provides the means by which the value of an Object field can be given
by a StateManager to an object that needs the value.
|
void |
storeShortField(int fieldNum,
short value)
Provides the means by which the value of a short field can be given
by a StateManager to an object that needs the value.
|
void |
storeStringField(int fieldNum,
java.lang.String value)
Provides the means by which the value of a String field can be given
by a StateManager to an object that needs the value.
|
void storeBooleanField(int fieldNum, boolean value)
fieldNum
- Field number of the field in the object whose value is
given.value
- Boolean that is the value of a particular field.boolean fetchBooleanField(int fieldNum)
void storeCharField(int fieldNum, char value)
fieldNum
- Field number of the field in the object whose value is
given.value
- Char that is the value of a particular field.char fetchCharField(int fieldNum)
void storeByteField(int fieldNum, byte value)
fieldNum
- Field number of the field in the object whose value is
given.value
- Byte that is the value of a particular field.byte fetchByteField(int fieldNum)
void storeShortField(int fieldNum, short value)
fieldNum
- Field number of the field in the object whose value is
given.value
- Short that is the value of a particular field.short fetchShortField(int fieldNum)
void storeIntField(int fieldNum, int value)
fieldNum
- Field number of the field in the object whose value is
given.value
- Int that is the value of a particular field.int fetchIntField(int fieldNum)
void storeLongField(int fieldNum, long value)
fieldNum
- Field number of the field in the object whose value is
given.value
- Long that is the value of a particular field.long fetchLongField(int fieldNum)
void storeFloatField(int fieldNum, float value)
fieldNum
- Field number of the field in the object whose value is
given.value
- that is the value of a particular field.float fetchFloatField(int fieldNum)
void storeDoubleField(int fieldNum, double value)
fieldNum
- Field number of the field in the object whose value is
given.value
- Double that is the value of a particular field.double fetchDoubleField(int fieldNum)
void storeStringField(int fieldNum, java.lang.String value)
fieldNum
- Field number of the field in the object whose value is
given.value
- String that is the value of a particular field.java.lang.String fetchStringField(int fieldNum)
void storeObjectField(int fieldNum, java.lang.Object value)
fieldNum
- Field number of the field in the object whose value is
given.value
- Object that is the value of a particular field.java.lang.Object fetchObjectField(int fieldNum)
Copyright © 2005-2012 Apache Software Foundation. All Rights Reserved.