|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Uwe Schindler (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Uwe Schindler (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Uwe Schindler (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Chris Male (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Uwe Schindler (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Uwe Schindler (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Uwe Schindler (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Uwe Schindler (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Uwe Schindler (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Chris Male (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Uwe Schindler (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Chris Male (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Uwe Schindler (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Robert Muir (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Robert Muir (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Robert Muir (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Robert Muir (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Uwe Schindler (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Chris Male (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Robert Muir (JIRA)
- [jira] [Commented] (LUCENE-3312) Break out StorableFi... Uwe Schindler (JIRA)

I have one comment about the following methods in Document:
+ /** Obtains all indexed fields in document */ + @Override + public Iterable<? extends IndexableField> indexableFields() { + Iterator<Field> it = indexedFieldsIterator(); + + List<IndexableField> result = new ArrayList<IndexableField>(); + while(it.hasNext()) { + result.add(it.next()); + } + + return result; + } + + + /** Obtains all stored fields in document. */ + @Override + public Iterable<? extends StorableField> storableFields() { + Iterator<Field> it = storedFieldsIterator(); + + List<StorableField> result = new ArrayList<StorableField>(); + while(it.hasNext()) { + result.add(it.next()); + } + + return result; + } +