Uses of Interface
org.apache.jackrabbit.core.util.StringIndex
-
Packages that use StringIndex Package Description org.apache.jackrabbit.core Contains the core classes that provide the implementation of the JCR API.org.apache.jackrabbit.core.persistence.bundle org.apache.jackrabbit.core.persistence.pool org.apache.jackrabbit.core.persistence.util -
-
Uses of StringIndex in org.apache.jackrabbit.core
Classes in org.apache.jackrabbit.core that implement StringIndex Modifier and Type Class Description class
NamespaceRegistryImpl
ANamespaceRegistryImpl
... -
Uses of StringIndex in org.apache.jackrabbit.core.persistence.bundle
Methods in org.apache.jackrabbit.core.persistence.bundle that return StringIndex Modifier and Type Method Description StringIndex
AbstractBundlePersistenceManager. getNameIndex()
Returns the local name indexStringIndex
AbstractBundlePersistenceManager. getNsIndex()
Returns the namespace index -
Uses of StringIndex in org.apache.jackrabbit.core.persistence.pool
Classes in org.apache.jackrabbit.core.persistence.pool that implement StringIndex Modifier and Type Class Description class
DbNameIndex
Implements aStringIndex
that stores and retrieves the names from a table in a database.class
NGKDbNameIndex
Same asDbNameIndex
but does not make use of theStatement.RETURN_GENERATED_KEYS
feature as it might not be provided by the underlying database (e.g.class
PostgreSQLNameIndex
Same asDbNameIndex
but does not make use of theStatement.RETURN_GENERATED_KEYS
feature as it is not provided by the underlying database driver for PostgreSQL.Methods in org.apache.jackrabbit.core.persistence.pool that return StringIndex Modifier and Type Method Description StringIndex
BundleDbPersistenceManager. getNameIndex()
Returns the local name index -
Uses of StringIndex in org.apache.jackrabbit.core.persistence.util
Classes in org.apache.jackrabbit.core.persistence.util that implement StringIndex Modifier and Type Class Description class
FileBasedIndex
Implements aStringIndex
that is based on a hashmap and persists the names as property file.class
HashMapIndex
Implements aStringIndex
that is based on a hashmap.Fields in org.apache.jackrabbit.core.persistence.util declared as StringIndex Modifier and Type Field Description protected StringIndex
BundleBinding. nameIndex
the name indexprotected StringIndex
BundleBinding. nsIndex
the namespace indexConstructors in org.apache.jackrabbit.core.persistence.util with parameters of type StringIndex Constructor Description BundleBinding(ErrorHandling errorHandling, BLOBStore blobStore, StringIndex nsIndex, StringIndex nameIndex, DataStore dataStore)
Creates a new bundle binding
-