add --shared
[pylucene.git] / lucene-java-3.4.0 / lucene / contrib / facet / src / java / org / apache / lucene / facet / taxonomy / package.html
1 <html>
2 <head>
3 <title>Taxonomy of Categories</title>
4 </head>
5 <body>
6         <h1>Taxonomy of Categories</h1>
7         
8         Facets are defined using a hierarchy of categories, known as a
9         <i>Taxonomy</i>
10         
11         <br>
12         For example, in a book store application, a Taxonomy could have the
13         following hierarchy:
14         <p>
15         <ul>
16                 <li>Author</li>
17                 <ul>
18                 <li>Mark Twain</li>
19                 <li>J. K. Rowling</li>
20                 </ul>
21         </ul>
22         <ul>
23                 <li>Date</li>
24                 <ul>
25                 <li>2010</li>
26                 <li>2009</li>
27                 </ul>
28         </ul>
29         
30         The <i>Taxonomy</i> translates category-paths into category-ordinal and vice versa.
31 </body>
32 </html>