View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *     http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.apache.tika.metadata;
18  
19  /**
20   * A collection of Microsoft Office documents property names.
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  }