1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.tika.metadata;
18
19
20
21
22 public interface MSOffice {
23
24 String KEYWORDS = "Keywords";
25
26 String COMMENTS = "Comments";
27
28 String LAST_AUTHOR = "Last-Author";
29
30 String APPLICATION_NAME = "Application-Name";
31
32 String CHARACTER_COUNT = "Character Count";
33
34 String LAST_PRINTED = "Last-Printed";
35
36 String LAST_SAVED = "Last-Save-Date";
37
38 String PAGE_COUNT = "Page-Count";
39
40 String REVISION_NUMBER = "Revision-Number";
41
42 String WORD_COUNT = "Word-Count";
43
44 String TEMPLATE = "Template";
45
46 String AUTHOR = "Author";
47
48 String TOTAL_TIME = "Total-Time";
49
50 String SLIDE_COUNT = "Slide-Count";
51
52 String PRESENTATION_FORMAT = "Presentation-Format";
53
54 String PARAGRAPH_COUNT = "Paragraph-Count";
55
56 String NOTES = "Notes";
57
58 String MANAGER = "Manager";
59
60 String LINE_COUNT = "Line-Count";
61
62 String CHARACTER_COUNT_WITH_SPACES = "Character-Count-With-Spaces";
63
64 String APPLICATION_VERSION = "Application-Version";
65
66 String VERSION = "Version";
67
68 String CONTENT_STATUS = "Content-Status";
69
70 String CATEGORY = "Category";
71
72 String COMPANY = "Company";
73
74 String SECURITY = "Security";
75
76 String EDIT_TIME = "Edit-Time";
77
78 String CREATION_DATE = "Creation-Date";
79
80 }