To set a column with an object for a specified column in a ByteArrayParser .
Method: public void setObject(String sProperty,Object oValue) throws Exception
Visibility: Public
Purpose: To set the value of a column in a parsed object.
Parameters: sProperty - Specifies the property/Column that you wish to set the value of. exception: Exception - Throws five possible Exception under these Circumstances.Circumstance 1: If the property/column specified does not exist.Circumstance 2: If the length of the values being passed is not equal to the required column length for String objects.Circumstance 3: If doParse has not been called.Circumstance 4: If the object passed is null.Circumstance 5: If the value of an Integer or Float type is not within its min/max range determined by its length. |