Return-Path: X-Original-To: apmail-lucene-dev-archive@www.apache.org Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7359C9E49 for ; Tue, 27 Sep 2011 17:28:12 +0000 (UTC) Received: (qmail 62196 invoked by uid 500); 27 Sep 2011 17:28:11 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 62136 invoked by uid 500); 27 Sep 2011 17:28:11 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 62128 invoked by uid 99); 27 Sep 2011 17:28:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Sep 2011 17:28:11 +0000 X-ASF-Spam-Status: No, hits=-2000.5 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Sep 2011 17:28:08 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 54034289A96 for ; Tue, 27 Sep 2011 17:27:47 +0000 (UTC) Date: Tue, 27 Sep 2011 17:27:47 +0000 (UTC) From: "Robert Muir (Created) (JIRA)" To: dev@lucene.apache.org Message-ID: <694002828.223.1317144467345.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Created] (LUCENE-3472) add back Document.getValues() MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org add back Document.getValues() ----------------------------- Key: LUCENE-3472 URL: https://issues.apache.org/jira/browse/LUCENE-3472 Project: Lucene - Java Issue Type: Bug Reporter: Robert Muir Fix For: 4.0 I'm porting some code to trunk's new Doc/Field apis, and i keep running into this pattern: {noformat} String[] values = doc.getValues("field"); {noformat} But with the new apis, this becomes a little too verbose: {noformat} IndexableField[] fields = doc.getFields("field"); String[] values = new String[fields.length]; for (int i = 0; i < values.length; i++) { values[i] = fields[i].stringValue(); } {noformat} I think we should probably add back the sugar api (with the same name) ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org