| |
|
| java.util.HashMap org.apache.poi.hpsf.wellknown.PropertyIDMap
PID_APPNAME | final public static int PID_APPNAME(Code) | | ID of the property that denotes the application that created the
document
|
PID_AUTHOR | final public static int PID_AUTHOR(Code) | | ID of the property that denotes the document's author
|
PID_BYTECOUNT | final public static int PID_BYTECOUNT(Code) | | Number of bytes.
|
PID_CATEGORY | final public static int PID_CATEGORY(Code) | | The entry is a string denoting the category the file belongs
to, e.g. review, memo, etc. This is useful to find documents of
same type.
|
PID_CHARCOUNT | final public static int PID_CHARCOUNT(Code) | | ID of the property that denotes the number of characters in the
document
|
PID_CODEPAGE | final public static int PID_CODEPAGE(Code) | | The entry denotes a code page.
|
PID_COMMENTS | final public static int PID_COMMENTS(Code) | | ID of the property that denotes the document's comments
|
PID_COMPANY | final public static int PID_COMPANY(Code) | | This entry contains the company name.
|
PID_CREATE_DTM | final public static int PID_CREATE_DTM(Code) | | ID of the property that denotes the date and time the document was
created.
|
PID_DICTIONARY | final public static int PID_DICTIONARY(Code) | | The entry is a dictionary.
|
PID_DOCPARTS | final public static int PID_DOCPARTS(Code) | | This entry contains the names of document parts (word: names
of the documents in the master document, excel: sheet names,
power point: slide titles, binder: document names).
|
PID_EDITTIME | final public static int PID_EDITTIME(Code) | | ID of the property that denotes the document's edit time
|
PID_HEADINGPAIR | final public static int PID_HEADINGPAIR(Code) | | This entry denotes an internally used property. It is a
vector of variants consisting of pairs of a string (VT_LPSTR)
and a number (VT_I4). The string is a heading name, and the
number tells how many document parts are under that
heading.
|
PID_HIDDENCOUNT | final public static int PID_HIDDENCOUNT(Code) | | Number of hidden slides.
|
PID_KEYWORDS | final public static int PID_KEYWORDS(Code) | | ID of the property that denotes the document's keywords
|
PID_LASTAUTHOR | final public static int PID_LASTAUTHOR(Code) | | ID of the property that denotes the document's last author
|
PID_LASTPRINTED | final public static int PID_LASTPRINTED(Code) | | ID of the property that denotes the date and time the document was
last printed
|
PID_LASTSAVE_DTM | final public static int PID_LASTSAVE_DTM(Code) | | ID of the property that denotes the date and time the document was
saved
|
PID_LINECOUNT | final public static int PID_LINECOUNT(Code) | | Number of lines.
|
PID_LINKSDIRTY | final public static int PID_LINKSDIRTY(Code) | | If this entry is -1 the links are dirty and should be
re-evaluated.
|
PID_MANAGER | final public static int PID_MANAGER(Code) | | This entry contains the name of the project manager.
|
PID_MAX | final public static int PID_MAX(Code) | | The highest well-known property ID. Applications are free to use higher values for custom purposes.
|
PID_MMCLIPCOUNT | final public static int PID_MMCLIPCOUNT(Code) | | Number of multimedia clips, e.g. sound or video.
|
PID_NOTECOUNT | final public static int PID_NOTECOUNT(Code) | | Number of slides with notes.
|
PID_PAGECOUNT | final public static int PID_PAGECOUNT(Code) | | ID of the property that denotes the number of pages in the
document
|
PID_PARCOUNT | final public static int PID_PARCOUNT(Code) | | Number of paragraphs.
|
PID_PRESFORMAT | final public static int PID_PRESFORMAT(Code) | | Target format for power point presentation, e.g. 35mm,
printer, video etc.
|
PID_REVNUMBER | final public static int PID_REVNUMBER(Code) | | ID of the property that denotes the document's revision number
|
PID_SCALE | final public static int PID_SCALE(Code) | | This entry is set to -1 when scaling of the thumbnail is
desired. Otherwise the thumbnail should be cropped.
|
PID_SECURITY | final public static int PID_SECURITY(Code) | | ID of the property that denotes whether read/write access to the
document is allowed or whether is should be opened as read-only. It can
have the following values:
Value |
Description |
0 |
No restriction |
2 |
Read-only recommended |
4 |
Read-only enforced |
|
PID_SLIDECOUNT | final public static int PID_SLIDECOUNT(Code) | | Number of slides in a power point presentation.
|
PID_SUBJECT | final public static int PID_SUBJECT(Code) | | ID of the property that denotes the document's subject
|
PID_TEMPLATE | final public static int PID_TEMPLATE(Code) | | ID of the property that denotes the document's template
|
PID_THUMBNAIL | final public static int PID_THUMBNAIL(Code) | | ID of the property that denotes the document's thumbnail
|
PID_TITLE | final public static int PID_TITLE(Code) | | ID of the property that denotes the document's title
|
PID_WORDCOUNT | final public static int PID_WORDCOUNT(Code) | | ID of the property that denotes the number of words in the
document
|
PropertyIDMap | public PropertyIDMap(int initialCapacity, float loadFactor)(Code) | | Creates a
PropertyIDMap .
Parameters: initialCapacity - The initial capacity as defined forHashMap Parameters: loadFactor - The load factor as defined for HashMap |
PropertyIDMap | public PropertyIDMap(Map map)(Code) | | Creates a
PropertyIDMap backed by another map.
Parameters: map - The instance to be created is backed by this map. |
get | public Object get(long id)(Code) | | Gets the ID string for an ID from the
PropertyIDMap .
Parameters: id - The ID. The ID string associated with id. |
getDocumentSummaryInformationProperties | public static PropertyIDMap getDocumentSummaryInformationProperties()(Code) | | Returns the Document Summary Information properties
singleton.
The Document Summary Information properties singleton. |
getSummaryInformationProperties | public static PropertyIDMap getSummaryInformationProperties()(Code) | | the Summary Information properties singleton |
main | public static void main(String[] args)(Code) | | For the most basic testing.
Parameters: args - The command-line arguments |
put | public Object put(long id, String idString)(Code) | | Puts a ID string for an ID into the
PropertyIDMap .
Parameters: id - The ID. Parameters: idString - The ID string. As specified by the java.util.Map interface, this methodreturns the previous value associated with the specifiedid, or null if there was no mapping forkey. |
|
|
|