Package loci.poi.hpsf
Class PropertySetFactory
- java.lang.Object
-
- loci.poi.hpsf.PropertySetFactory
-
public class PropertySetFactory extends Object
Factory class to create instances of
SummaryInformation
,DocumentSummaryInformation
andPropertySet
.- Since:
- 2002-02-09
- Version:
- $Id: PropertySetFactory.java 489730 2006-12-22 19:18:16Z bayard $
- Author:
- Rainer Klute <klute@rainer-klute.de>
-
-
Constructor Summary
Constructors Constructor Description PropertySetFactory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PropertySet
create(InputStream stream)
Creates the most specificPropertySet
from anInputStream
.static DocumentSummaryInformation
newDocumentSummaryInformation()
Creates a new document summary information.static SummaryInformation
newSummaryInformation()
Creates a new summary information.
-
-
-
Method Detail
-
create
public static PropertySet create(InputStream stream) throws NoPropertySetStreamException, MarkUnsupportedException, UnsupportedEncodingException, IOException
Creates the most specific
PropertySet
from anInputStream
. This is preferrably aDocumentSummaryInformation
or aSummaryInformation
. If the specifiedInputStream
does not contain a property set stream, an exception is thrown and theInputStream
is repositioned at its beginning.- Parameters:
stream
- Contains the property set stream's data.- Returns:
- The created
PropertySet
. - Throws:
NoPropertySetStreamException
- if the stream does not contain a property set.MarkUnsupportedException
- if the stream does not support themark
operation.IOException
- if some I/O problem occurs.UnsupportedEncodingException
- if the specified codepage is not supported.
-
newSummaryInformation
public static SummaryInformation newSummaryInformation()
Creates a new summary information.
- Returns:
- the new summary information.
-
newDocumentSummaryInformation
public static DocumentSummaryInformation newDocumentSummaryInformation()
Creates a new document summary information.
- Returns:
- the new document summary information.
-
-