Uses of Class
com.pff.PSTException

Packages that use PSTException
com.pff   
example   
 

Uses of PSTException in com.pff
 

Methods in com.pff that throw PSTException
static java.lang.String LZFu.decode(byte[] data)
           
static PSTObject PSTObject.detectAndLoadPSTObject(PSTFile theFile, long descriptorIndex)
          Detect and load a PST Object from a file with the specified descriptor index
 PSTAttachment PSTMessage.getAttachment(int attachmentNumber)
          get a specific attachment from this email.
 java.util.LinkedList<java.lang.Integer> PSTFolder.getChildDescriptorNodes()
           
 java.util.Vector<PSTObject> PSTFolder.getChildren(int numberToReturn)
          get some children from the folder This is implemented as a cursor of sorts, as there could be thousands and that is just too many to process at once.
 java.lang.String[] PSTMessage.getColorCategories()
          get the categories defined for this message
 PSTMessage PSTAttachment.getEmbeddedPSTMessage()
           
 java.io.InputStream PSTAttachment.getFileInputStream()
           
 int PSTAttachment.getFilesize()
           
 int PSTFile.getLeafSize(long bid)
           
 PSTMessageStore PSTFile.getMessageStore()
          get the message store of the PST file.
 PSTObject PSTFolder.getNextChild()
          Get the next child of this folder As there could be thousands of emails, we have these kind of cursor operations
 int PSTMessage.getNumberOfRecipients()
          get the number of recipients for this message
 PSTRecipient PSTMessage.getRecipient(int recipientNumber)
          get a specific recipient from this email.
 PSTFolder PSTFile.getRootFolder()
          get the root folder for the PST file.
 java.lang.String PSTMessage.getRTFBody()
           
 int PSTFolder.getSubFolderCount()
          the number of child folders in this folder
 java.util.Vector<PSTFolder> PSTFolder.getSubFolders()
          get all of the sub folders...
 void PSTFolder.moveChildCursorTo(int newIndex)
          move the internal folder cursor to the desired position position 0 is before the first record.
 void PSTNodeInputStream.seek(long location)
           
 long PSTNodeInputStream.seekAndReadLong(long location, int bytes)
           
 

Constructors in com.pff that throw PSTException
PSTActivity(PSTFile theFile, DescriptorIndexNode descriptorIndexNode)
           
PSTContact(PSTFile theFile, DescriptorIndexNode descriptorIndexNode)
           
PSTFile(java.io.File fileName)
           
PSTFile(java.lang.String fileName)
          constructor
PSTObject(PSTFile theFile, DescriptorIndexNode descriptorIndexNode)
           
PSTRss(PSTFile theFile, DescriptorIndexNode descriptorIndexNode)
           
PSTTask(PSTFile theFile, DescriptorIndexNode descriptorIndexNode)
           
 

Uses of PSTException in example
 

Methods in example that throw PSTException
static void TestGui.main(java.lang.String[] args)
           
 void Test.processFolder(PSTFolder folder)
           
 

Constructors in example that throw PSTException
TestGui()