public class SectionIDMap
extends java.util.HashMap
Maps section format IDs to PropertyIDMaps. It is
initialized with two well-known section format IDs: those of the
\005SummaryInformation stream and the
\005DocumentSummaryInformation stream.
If you have a section format ID you can use it as a key to query
this map. If you get a PropertyIDMap returned your section
is well-known and you can query the PropertyIDMap for PID
strings. If you get back null you are on your own.
This Map expects the byte arrays of section format IDs
as keys. A key maps to a PropertyIDMap describing the
property IDs in sections with the specified section format ID.
| Modifier and Type | Field and Description |
|---|---|
static byte[][] |
DOCUMENT_SUMMARY_INFORMATION_ID
The DocumentSummaryInformation's first and second sections' format
ID.
|
static byte[] |
SUMMARY_INFORMATION_ID
The SummaryInformation's section's format ID.
|
static java.lang.String |
UNDEFINED
A property without a known name is described by this string.
|
| Constructor and Description |
|---|
SectionIDMap() |
| Modifier and Type | Method and Description |
|---|---|
PropertyIDMap |
get(byte[] sectionFormatID)
Returns the
PropertyIDMap for a given section format
ID. |
static SectionIDMap |
getInstance()
Returns the singleton instance of the default
SectionIDMap. |
static java.lang.String |
getPIDString(byte[] sectionFormatID,
long pid)
Returns the property ID string that is associated with a
given property ID in a section format ID's namespace.
|
PropertyIDMap |
put(byte[] sectionFormatID,
PropertyIDMap propertyIDMap)
Associates a section format ID with a
PropertyIDMap. |
protected PropertyIDMap |
put(java.lang.String key,
PropertyIDMap value)
Associates the string representation of a section
format ID with a
PropertyIDMap |
clear, clone, containsKey, containsValue, entrySet, get, isEmpty, keySet, put, putAll, remove, size, valuespublic static final byte[] SUMMARY_INFORMATION_ID
The SummaryInformation's section's format ID.
public static final byte[][] DOCUMENT_SUMMARY_INFORMATION_ID
The DocumentSummaryInformation's first and second sections' format ID.
public static final java.lang.String UNDEFINED
A property without a known name is described by this string.
public static SectionIDMap getInstance()
Returns the singleton instance of the default SectionIDMap.
public static java.lang.String getPIDString(byte[] sectionFormatID,
long pid)
Returns the property ID string that is associated with a given property ID in a section format ID's namespace.
sectionFormatID - Each section format ID has its own name
space of property ID strings and thus must be specified.pid - The property IDpublic PropertyIDMap get(byte[] sectionFormatID)
Returns the PropertyIDMap for a given section format
ID.
sectionFormatID - the section format IDpublic PropertyIDMap put(byte[] sectionFormatID, PropertyIDMap propertyIDMap)
Associates a section format ID with a PropertyIDMap.
sectionFormatID - the section format IDpropertyIDMap - the property ID mapMap.put(K, V)protected PropertyIDMap put(java.lang.String key, PropertyIDMap value)
PropertyIDMapkey - the key of the PropertyIDMapvalue - the PropertyIDMap itselfnull if there wasn't one