*/
public List getFileDecodeParams() throws IOException
{
List retval = null;
COSBase dp = stream.getDictionaryObject( "FDecodeParms" );
if( dp instanceof COSDictionary )
{
Map map = COSDictionaryMap.convertBasicTypesToMap( (COSDictionary)dp );
retval = new COSArrayList(map, dp, stream, "FDecodeParams" );
}