* @return the seed value dictionary as PDSeedValue
*/
public PDSeedValue getSeedValue()
{
COSDictionary dict = (COSDictionary)getDictionary().getDictionaryObject(COSName.SV);
PDSeedValue sv = null;
if (dict != null)
{
sv = new PDSeedValue(dict);
}
return sv;
}