All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testcontainers.containers.Neo4jLabsPlugin Maven / Gradle / Ivy

There is a newer version: 1.20.2
Show newest version
package org.testcontainers.containers;

/**
 * Reflects a plugin from the official Neo4j 4.4.
 * Neo4j Labs Plugin list.
 * There might be plugins not supported by your selected version of Neo4j.
 *
 * @deprecated Please use {@link Neo4jContainer#withLabsPlugins(String...)} with the matching plugin name for your Neo4j version.
 * Due to some renaming of the (Docker image) plugin names, there is no naming consistency across versions.
 * The plugins are listed here
 * 
 */
public enum Neo4jLabsPlugin {
    APOC("apoc"),
    APOC_CORE("apoc-core"),
    BLOOM("bloom"),
    STREAMS("streams"),
    GRAPH_DATA_SCIENCE("graph-data-science"),
    NEO_SEMANTICS("n10s");

    final String pluginName;

    Neo4jLabsPlugin(String pluginName) {
        this.pluginName = pluginName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy