Uses of Interface
org.jboss.dna.graph.property.ValueFactories

Packages that use ValueFactories
org.jboss.dna.connector.store.jpa.util The classes that define the utility JPA entities that are not part of any storage model. 
org.jboss.dna.graph The JBoss DNA Graph API defines the types that allow you to work with content organized as a graph. 
org.jboss.dna.graph.property Nodes in a graph contain properties, and this package defines the interfaces, classes and exceptions for representing and working with properties and their values. 
org.jboss.dna.graph.property.basic A set of basic implementations of the various interfaces defined in org.jboss.dna.graph.property
org.jboss.dna.repository.sequencer The classes that make up the sequencing service and its configuration. 
org.jboss.dna.search.lucene.query   
 

Uses of ValueFactories in org.jboss.dna.connector.store.jpa.util
 

Methods in org.jboss.dna.connector.store.jpa.util with parameters of type ValueFactories
 Object Serializer.LargeValues.read(ValueFactories valueFactories, byte[] hash, long length)
           
 

Uses of ValueFactories in org.jboss.dna.graph
 

Methods in org.jboss.dna.graph that return ValueFactories
 ValueFactories ExecutionContext.getValueFactories()
          Get the factories that should be used to create values for properties.
 

Uses of ValueFactories in org.jboss.dna.graph.property
 

Constructors in org.jboss.dna.graph.property with parameters of type ValueFactories
ValueTypeSystem(ValueFactories valueFactories)
          Create a type system using the supplied value factories.
 

Uses of ValueFactories in org.jboss.dna.graph.property.basic
 

Classes in org.jboss.dna.graph.property.basic that implement ValueFactories
 class AbstractValueFactories
          Abstract implementation of ValueFactories that implements all the methods other than the get*Factory() methods.
 class StandardValueFactories
          The standard set of value factories.
 

Constructors in org.jboss.dna.graph.property.basic with parameters of type ValueFactories
BasicPropertyFactory(ValueFactories valueFactories)
           
 

Uses of ValueFactories in org.jboss.dna.repository.sequencer
 

Constructors in org.jboss.dna.repository.sequencer with parameters of type ValueFactories
SequencerOutputMap(ValueFactories factories)
           
 

Uses of ValueFactories in org.jboss.dna.search.lucene.query
 

Methods in org.jboss.dna.search.lucene.query with parameters of type ValueFactories
static CompareLengthQuery CompareLengthQuery.createQueryForNodesWithFieldEqualTo(Integer constraintValue, String fieldName, ValueFactories factories)
          Construct a Query implementation that scores documents with a field length that is equal to the supplied constraint value.
static org.apache.lucene.search.Query CompareStringQuery.createQueryForNodesWithFieldEqualTo(String constraintValue, String fieldName, ValueFactories factories, boolean caseSensitive)
          Construct a Query implementation that scores documents with a string field value that is equal to the supplied constraint value.
static CompareLengthQuery CompareLengthQuery.createQueryForNodesWithFieldGreaterThan(Integer constraintValue, String fieldName, ValueFactories factories)
          Construct a Query implementation that scores documents with a field length that is greater than the supplied constraint value.
static CompareStringQuery CompareStringQuery.createQueryForNodesWithFieldGreaterThan(String constraintValue, String fieldName, ValueFactories factories, boolean caseSensitive)
          Construct a Query implementation that scores documents with a string field value that is greater than the supplied constraint value.
static CompareLengthQuery CompareLengthQuery.createQueryForNodesWithFieldGreaterThanOrEqualTo(Integer constraintValue, String fieldName, ValueFactories factories)
          Construct a Query implementation that scores documents with a field length that is greater than or equal to the supplied constraint value.
static CompareStringQuery CompareStringQuery.createQueryForNodesWithFieldGreaterThanOrEqualTo(String constraintValue, String fieldName, ValueFactories factories, boolean caseSensitive)
          Construct a Query implementation that scores documents with a string field value that is greater than or equal to the supplied constraint value.
static CompareLengthQuery CompareLengthQuery.createQueryForNodesWithFieldLessThan(Integer constraintValue, String fieldName, ValueFactories factories)
          Construct a Query implementation that scores documents with a field length that is less than the supplied constraint value.
static CompareStringQuery CompareStringQuery.createQueryForNodesWithFieldLessThan(String constraintValue, String fieldName, ValueFactories factories, boolean caseSensitive)
          Construct a Query implementation that scores documents with a string field value that is less than the supplied constraint value.
static CompareLengthQuery CompareLengthQuery.createQueryForNodesWithFieldLessThanOrEqualTo(Integer constraintValue, String fieldName, ValueFactories factories)
          Construct a Query implementation that scores documents with a field length that is less than or equal to the supplied constraint value.
static CompareStringQuery CompareStringQuery.createQueryForNodesWithFieldLessThanOrEqualTo(String constraintValue, String fieldName, ValueFactories factories, boolean caseSensitive)
          Construct a Query implementation that scores documents with a string field value that is less than or equal to the supplied constraint value.
static org.apache.lucene.search.Query CompareStringQuery.createQueryForNodesWithFieldLike(String likeExpression, String fieldName, ValueFactories factories, boolean caseSensitive)
          Construct a Query implementation that scores documents with a string field value that is LIKE the supplied constraint value.
static CompareLengthQuery CompareLengthQuery.createQueryForNodesWithFieldNotEqualTo(Integer constraintValue, String fieldName, ValueFactories factories)
          Construct a Query implementation that scores documents with a field length that is not equal to the supplied constraint value.
static CompareNameQuery CompareNameQuery.createQueryForNodesWithNameGreaterThan(Path.Segment constraintValue, String localNameField, String snsIndexFieldName, ValueFactories factories, boolean caseSensitive)
          Construct a Query implementation that scores documents such that the node represented by the document has a name that is greater than the supplied constraint name.
static CompareNameQuery CompareNameQuery.createQueryForNodesWithNameGreaterThanOrEqualTo(Path.Segment constraintValue, String localNameField, String snsIndexFieldName, ValueFactories factories, boolean caseSensitive)
          Construct a Query implementation that scores documents such that the node represented by the document has a name that is greater than or equal to the supplied constraint name.
static CompareNameQuery CompareNameQuery.createQueryForNodesWithNameLessThan(Path.Segment constraintValue, String localNameField, String snsIndexFieldName, ValueFactories factories, boolean caseSensitive)
          Construct a Query implementation that scores documents such that the node represented by the document has a name that is less than the supplied constraint name.
static CompareNameQuery CompareNameQuery.createQueryForNodesWithNameLessThanOrEqualTo(Path.Segment constraintValue, String localNameField, String snsIndexFieldName, ValueFactories factories, boolean caseSensitive)
          Construct a Query implementation that scores documents such that the node represented by the document has a name that is less than or equal to the supplied constraint name.
static ComparePathQuery ComparePathQuery.createQueryForNodesWithPathGreaterThan(Path constraintPath, String fieldName, ValueFactories factories, boolean caseSensitive)
          Construct a Query implementation that scores documents such that the node represented by the document has a path that is greater than the supplied constraint path.
static ComparePathQuery ComparePathQuery.createQueryForNodesWithPathGreaterThanOrEqualTo(Path constraintPath, String fieldName, ValueFactories factories, boolean caseSensitive)
          Construct a Query implementation that scores documents such that the node represented by the document has a path that is greater than or equal to the supplied constraint path.
static ComparePathQuery ComparePathQuery.createQueryForNodesWithPathLessThan(Path constraintPath, String fieldName, ValueFactories factories, boolean caseSensitive)
          Construct a Query implementation that scores documents such that the node represented by the document has a path that is less than the supplied constraint path.
static ComparePathQuery ComparePathQuery.createQueryForNodesWithPathLessThanOrEqualTo(Path constraintPath, String fieldName, ValueFactories factories, boolean caseSensitive)
          Construct a Query implementation that scores documents such that the node represented by the document has a path that is less than or equal to the supplied constraint path.
 



Copyright © 2008-2010 JBoss, a division of Red Hat. All Rights Reserved.