Java Doc for I_CmsExtractionResult.java in  » Content-Management-System » opencms » org » opencms » search » extractors » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Content Management System » opencms » org.opencms.search.extractors 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.opencms.search.extractors.I_CmsExtractionResult

All known Subclasses:   org.opencms.search.extractors.CmsExtractionResult,
I_CmsExtractionResult
public interface I_CmsExtractionResult (Code)
The result of a document text extraction.

This data structure contains the extracted text as well as (optional) meta information extracted from the document.


author:
   Alexander Kandzior
version:
   $Revision: 1.10 $
since:
   6.0.0



Field Summary
 StringITEM_AUTHOR
     Key to access the document author name in the item map.
 StringITEM_CATEGORY
     Key to access the document catrgory in the item map.
 StringITEM_COMMENTS
     Key to access the document comments in the item map.
 StringITEM_COMPANY
     Key to access the document company name in the item map.
 StringITEM_CONTENT
     Key for accessing the default (combined) content in I_CmsExtractionResult.getContentItems() .
 StringITEM_CREATOR
     Key to access the document creator name in the item map.
 StringITEM_KEYWORDS
     Key to access the document keywords in the item map.
 StringITEM_MANAGER
     Key to access the document manager name in the item map.
 StringITEM_PRODUCER
     Key to access the document producer name in the item map.
 StringITEM_RAW
     Key for accessing the raw content in I_CmsExtractionResult.getContentItems() .
 StringITEM_SUBJECT
     Key to access the document subject in the item map.
 StringITEM_TITLE
     Key to access the document title in the item map.


Method Summary
 StringgetContent()
    
 MapgetContentItems()
     Returns the extracted content as individual items.

The result Map contains all content items extracted by the extractor.

 voidrelease()
    

Field Detail
ITEM_AUTHOR
String ITEM_AUTHOR(Code)
Key to access the document author name in the item map.



ITEM_CATEGORY
String ITEM_CATEGORY(Code)
Key to access the document catrgory in the item map.



ITEM_COMMENTS
String ITEM_COMMENTS(Code)
Key to access the document comments in the item map.



ITEM_COMPANY
String ITEM_COMPANY(Code)
Key to access the document company name in the item map.



ITEM_CONTENT
String ITEM_CONTENT(Code)
Key for accessing the default (combined) content in I_CmsExtractionResult.getContentItems() .



ITEM_CREATOR
String ITEM_CREATOR(Code)
Key to access the document creator name in the item map.



ITEM_KEYWORDS
String ITEM_KEYWORDS(Code)
Key to access the document keywords in the item map.



ITEM_MANAGER
String ITEM_MANAGER(Code)
Key to access the document manager name in the item map.



ITEM_PRODUCER
String ITEM_PRODUCER(Code)
Key to access the document producer name in the item map.



ITEM_RAW
String ITEM_RAW(Code)
Key for accessing the raw content in I_CmsExtractionResult.getContentItems() .



ITEM_SUBJECT
String ITEM_SUBJECT(Code)
Key to access the document subject in the item map.



ITEM_TITLE
String ITEM_TITLE(Code)
Key to access the document title in the item map.





Method Detail
getContent
String getContent()(Code)
Returns the extracted content combined as a String.

the extracted content combined as a String




getContentItems
Map getContentItems()(Code)
Returns the extracted content as individual items.

The result Map contains all content items extracted by the extractor. The key is always a String, and contains the name of the item. The value is also a String and contains the extracted text.

The detailed form will depend on the resource type indexed:

  • For a xmlpage, the key will be the element name, and the value will be the text of the element.
  • For a xmlcontent, the key will be the xpath of the XML node, and the value will be the text of that XML node.
  • In case the document contains meta information (for example PDF or MS Office documents), the meta information is stored with the name of the meta field as key and the content as value.
  • For all other resource types, there will be only ony key I_CmsExtractionResult.ITEM_CONTENT , which will contain the value of the complete content.
the extracted content as individual items



release
void release()(Code)
Releases the information stored in this extraction result, to free up the memory used.




www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.