Searched defs:property (Results 1 - 4 of 4) sorted by relevance

/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/index/attributes/
H A DCategoryAttribute.java61 * Add a property. The property can be later retrieved using
62 * {@link #getProperty(Class)} with this property class .<br>
65 * @param property
66 * The property to add.
68 * When attempting to add a property of a class that was added
71 public void addProperty(CategoryProperty property) argument
75 * Get a property of a certain property class.
78 * The required property clas
[all...]
H A DCategoryAttributeImpl.java81 public void addProperty(CategoryProperty property) argument
86 CategoryProperty existing = properties.get(property.getClass());
88 properties.put(property.getClass(), property);
90 existing.merge(property);
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/index/
H A DCategoryContainer.java66 * Add a category with a property.
70 * @param property
71 * The property to associate to the category.
75 CategoryProperty property) {
80 * calls will be for this version (single property).
83 ca.addProperty(property);
248 CategoryProperty property = (CategoryProperty) in.readObject();
249 addCategory(cp, property);
74 addCategory(CategoryPath categoryPath, CategoryProperty property) argument
/lucene-3.6.0/solr/core/src/java/org/apache/solr/schema/
H A DFieldProperties.java68 /** Returns the symbolic name for the property. */
69 static String getPropertyName(int property) { argument
70 return propertyNames[ Integer.numberOfTrailingZeros(property) ];

Completed in 33 milliseconds