You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tika.apache.org by "Chris A. Mattmann (JIRA)" <ji...@apache.org> on 2007/09/27 19:28:50 UTC

[jira] Assigned: (TIKA-36) A convenience method for getting a document's content's text would be helpful.

     [ https://issues.apache.org/jira/browse/TIKA-36?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Chris A. Mattmann reassigned TIKA-36:
-------------------------------------

    Assignee: Chris A. Mattmann

> A convenience method for getting a document's content's text would be helpful.
> ------------------------------------------------------------------------------
>
>                 Key: TIKA-36
>                 URL: https://issues.apache.org/jira/browse/TIKA-36
>             Project: Tika
>          Issue Type: New Feature
>          Components: general
>    Affects Versions: 0.1-incubator
>            Reporter: Keith R. Bennett
>            Assignee: Chris A. Mattmann
>            Priority: Minor
>             Fix For: 0.1-incubator
>
>         Attachments: tika-36.patch
>
>
> Currently, to get a parsed document's content value (e.g. title), one must do something like this:
>         Content content = getContent(name);
>         return content != null
>                 ? content.getValue()
>                 : null;
> I'd like to suggest we create a method that does that in one place, so that users do not need to do that themselves.
> Patch coming momentarily...

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.