Package org.neo4j.index.lucene

Examples of org.neo4j.index.lucene.LuceneTimeline


        }
    };
   
    private TimelineIndex<PropertyContainer> nodeTimeline()
    {
        return new LuceneTimeline( db, db.index().forNodes( "timeline" ) );
    }
View Full Code Here


        return new LuceneTimeline( db, db.index().forNodes( "timeline" ) );
    }
   
    private TimelineIndex<PropertyContainer> relationshipTimeline()
    {
        return new LuceneTimeline( db, db.index().forRelationships( "timeline" ) );
    }
View Full Code Here

TOP

Related Classes of org.neo4j.index.lucene.LuceneTimeline

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.