Uses of Interface
org.compass.core.Property

Packages that use Property
org.compass.core   
org.compass.core.converter.basic   
org.compass.core.converter.mapping   
org.compass.core.converter.xsem   
org.compass.core.engine   
org.compass.core.engine.subindex   
org.compass.core.engine.utils   
org.compass.core.impl   
org.compass.core.lucene   
org.compass.core.lucene.engine   
org.compass.core.spi   
 

Uses of Property in org.compass.core
 

Methods in org.compass.core that return Property
 Property CompassOperations.createProperty(String name, byte[] value, Property.Store store)
          Creates a binary property only stored (can be compressed).
 Property CompassTemplate.createProperty(String name, byte[] value, Property.Store store)
           
 Property CompassOperations.createProperty(String name, Reader value)
          Creates a property (indexed, and not stored) for the specified reader.
 Property CompassTemplate.createProperty(String name, Reader value)
           
 Property CompassOperations.createProperty(String name, Reader value, Property.TermVector termVector)
          Creates a property (indexed, and not stored) for the specified reader.
 Property CompassTemplate.createProperty(String name, Reader value, Property.TermVector termVector)
           
 Property CompassOperations.createProperty(String name, String value, Property.Store store, Property.Index index)
          Creates a Property that is used with the actual Search Engine.
 Property CompassTemplate.createProperty(String name, String value, Property.Store store, Property.Index index)
           
 Property CompassOperations.createProperty(String name, String value, Property.Store store, Property.Index index, Property.TermVector termVector)
          Creates a Property that is used with the actual Search Engine.
 Property CompassTemplate.createProperty(String name, String value, Property.Store store, Property.Index index, Property.TermVector termVector)
           
 Property[] Resource.getIdProperties()
          Returns the id properties of the resource
 Property Resource.getIdProperty()
          Returns the id property of the resource
 Property[] Resource.getProperties()
          Returns all the properties for the resource.
 Property[] Resource.getProperties(String name)
          Returns all the properties under the given name.
 Property Resource.getProperty(String name)
          Returns the first property under the name.
 

Methods in org.compass.core with parameters of type Property
 Resource Resource.addProperty(Property property)
          Add a property to the resource.
 

Uses of Property in org.compass.core.converter.basic
 

Methods in org.compass.core.converter.basic with parameters of type Property
protected  void AbstractBasicConverter.doSetBoost(Property property, Object root, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          A simple extension point that allows to set the boost value for the created Property.
 

Uses of Property in org.compass.core.converter.mapping
 

Fields in org.compass.core.converter.mapping declared as Property
 Property[] CollectionResourceWrapper.PropertiesWrapper.properties
           
 

Methods in org.compass.core.converter.mapping that return Property
 Property[] CollectionResourceWrapper.getIdProperties()
           
 Property CollectionResourceWrapper.getIdProperty()
           
 Property[] CollectionResourceWrapper.getProperties()
           
 Property[] CollectionResourceWrapper.getProperties(String name)
           
 Property CollectionResourceWrapper.getProperty(String name)
           
 

Methods in org.compass.core.converter.mapping with parameters of type Property
 Resource CollectionResourceWrapper.addProperty(Property property)
           
 

Uses of Property in org.compass.core.converter.xsem
 

Methods in org.compass.core.converter.xsem with parameters of type Property
protected  void SimpleXmlValueConverter.doSetBoost(Property property, Object root, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          A simple extension point that allows to set the boost value for the created Property.
 

Uses of Property in org.compass.core.engine
 

Methods in org.compass.core.engine that return Property
 Property SearchEngine.createProperty(String name, byte[] value, Property.Store store)
          Creates a binary property.
 Property SearchEngine.createProperty(String name, Reader value)
          Creates a property (TEXT type) for the specified reader.
 Property SearchEngine.createProperty(String name, Reader value, Property.TermVector termVector)
          Creates a property (indexed, and not stored) for the specified reader.
 Property SearchEngine.createProperty(String value, ResourcePropertyMapping mapping)
          Creates a Property that is used with the actual Search Engine
 Property SearchEngine.createProperty(String name, String value, Property.Store store, Property.Index index)
          Creates a Property that is used with the actual Search Engine
 Property SearchEngine.createProperty(String name, String value, Property.Store store, Property.Index index, Property.TermVector termVector)
          Creates a Property that is used with the actual Search Engine.
 Property SearchEngine.createProperty(String name, String value, ResourcePropertyMapping mapping)
          Creates a Property that is used with the actual Search Engine
 

Uses of Property in org.compass.core.engine.subindex
 

Methods in org.compass.core.engine.subindex with parameters of type Property
 String ModuloSubIndexHash.mapSubIndex(String alias, Property[] ids)
          Computes the hash code of alias and all the ids, and then modulo it by size.
 String SubIndexHash.mapSubIndex(String alias, Property[] ids)
          Copmutes a sub index based on the given alias and ids.
 String ConstantSubIndexHash.mapSubIndex(String alias, Property[] ids)
          Returns the single constant sub index.
 

Uses of Property in org.compass.core.engine.utils
 

Methods in org.compass.core.engine.utils that return Property
static Property[] ResourceHelper.toIds(Resource resource, CompassMapping mapping)
           
static Property[] ResourceHelper.toIds(Resource resource, ResourceMapping resourceMapping)
          Same as ResourceHelper.toIds(org.compass.core.Resource, org.compass.core.mapping.ResourceMapping, boolean) with idsMustExist set the true.
static Property[] ResourceHelper.toIds(Resource resource, ResourceMapping resourceMapping, boolean idsMustExist)
          Gets the id properties based on the resource mapping from the give resource.
static Property[] ResourceHelper.toIds(SearchEngine searchEngine, String[] values, ResourceMapping mapping)
           
 

Uses of Property in org.compass.core.impl
 

Methods in org.compass.core.impl that return Property
 Property DefaultCompassSession.createProperty(String name, byte[] value, Property.Store store)
           
 Property DefaultCompassSession.createProperty(String name, Reader value)
           
 Property DefaultCompassSession.createProperty(String name, Reader value, Property.TermVector termVector)
           
 Property DefaultCompassSession.createProperty(String name, String value, Property.Store store, Property.Index index)
           
 Property DefaultCompassSession.createProperty(String name, String value, Property.Store store, Property.Index index, Property.TermVector termVector)
           
 

Uses of Property in org.compass.core.lucene
 

Classes in org.compass.core.lucene that implement Property
 class LuceneProperty
           
 

Methods in org.compass.core.lucene that return Property
 Property[] LuceneMultiResource.getIdProperties()
           
 Property[] LuceneResource.getIdProperties()
           
 Property LuceneMultiResource.getIdProperty()
           
 Property LuceneResource.getIdProperty()
           
 Property[] LuceneMultiResource.getProperties()
           
 Property[] LuceneResource.getProperties()
           
 Property[] LuceneMultiResource.getProperties(String name)
           
 Property[] LuceneResource.getProperties(String name)
           
 Property LuceneMultiResource.getProperty(String name)
           
 Property LuceneResource.getProperty(String name)
           
 

Methods in org.compass.core.lucene with parameters of type Property
 Resource LuceneMultiResource.addProperty(Property property)
           
 Resource LuceneResource.addProperty(Property property)
           
 

Uses of Property in org.compass.core.lucene.engine
 

Methods in org.compass.core.lucene.engine that return Property
 Property LuceneSearchEngine.createProperty(String name, byte[] value, Property.Store store)
           
 Property LuceneSearchEngine.createProperty(String name, Reader value)
           
 Property LuceneSearchEngine.createProperty(String name, Reader value, Property.TermVector termVector)
           
 Property LuceneSearchEngine.createProperty(String value, ResourcePropertyMapping mapping)
           
 Property LuceneSearchEngine.createProperty(String name, String value, Property.Store store, Property.Index index)
           
 Property LuceneSearchEngine.createProperty(String name, String value, Property.Store store, Property.Index index, Property.TermVector termVector)
           
 Property LuceneSearchEngine.createProperty(String name, String value, ResourcePropertyMapping mapping)
           
 

Uses of Property in org.compass.core.spi
 

Methods in org.compass.core.spi that return Property
 Property[] ResourceKey.getIds()
           
 

Constructors in org.compass.core.spi with parameters of type Property
ResourceKey(ResourceMapping resourceMapping, Property[] ids)
           
 



Copyright (c) 2004-2006 The Compass Project.