org.neo4j.kernel
Class AbstractGraphDatabase
java.lang.Object
org.neo4j.kernel.AbstractGraphDatabase
- All Implemented Interfaces:
- GraphDatabaseService
- Direct Known Subclasses:
- EmbeddedGraphDatabase, EmbeddedReadOnlyGraphDatabase, WrappedGraphDatabase
public abstract class AbstractGraphDatabase
- extends Object
- implements GraphDatabaseService
Exposes the methods getConfig()
() and getManagementBeans(Class)
() a.s.o.
Methods inherited from interface org.neo4j.graphdb.GraphDatabaseService |
beginTx, createNode, getAllNodes, getNodeById, getReferenceNode, getRelationshipById, getRelationshipTypes, index, registerKernelEventHandler, registerTransactionEventHandler, shutdown, unregisterKernelEventHandler, unregisterTransactionEventHandler |
AbstractGraphDatabase
public AbstractGraphDatabase()
getStoreDir
public abstract String getStoreDir()
getConfig
public abstract Config getConfig()
getManagementBean
@Deprecated
public final <T> T getManagementBean(Class<T> type)
- Deprecated. since Neo4j may now have multiple beans implementing the same bean interface, this method has been
deprecated in favor of
getSingleManagementBean(Class)
and getManagementBeans(Class)
. Version 1.5 of Neo4j will be the last version to contain this method.
- Get a single management bean. Delegates to
getSingleManagementBean(Class)
.
getSingleManagementBean
public final <T> T getSingleManagementBean(Class<T> type)
getManagementBeans
public abstract <T> Collection<T> getManagementBeans(Class<T> type)
isReadOnly
public abstract boolean isReadOnly()
toString
public String toString()
- Overrides:
toString
in class Object
Copyright © 2002-2012 The Neo4j Graph Database Project. All Rights Reserved.