|
What this is
Other links
The source codepackage org.apache.lucene.index; import java.io.IOException; /** Provides access to stored term vector of * a document field. */ public interface TermFreqVector { /** * * @return The field this vector is associated with. * */ public String getField(); /** * @return The number of terms in the term vector. */ public int size(); /** * @return An Array of term texts in ascending order. */ public String[] getTerms(); /** Array of term frequencies. Locations of the array correspond one to one * to the terms in the array obtained from |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.