Uses of Interface
org.apache.tinkerpop.gremlin.jsr223.Customizer
-
Packages that use Customizer Package Description org.apache.tinkerpop.gremlin.jsr223 org.apache.tinkerpop.gremlin.jsr223.console -
-
Uses of Customizer in org.apache.tinkerpop.gremlin.jsr223
Subinterfaces of Customizer in org.apache.tinkerpop.gremlin.jsr223 Modifier and Type Interface Description interface
BindingsCustomizer
Provides a way to alter the bindings on aGremlinScriptEngine
.interface
ImportCustomizer
Provides the list of imports to apply to aGremlinScriptEngine
instance.interface
ScriptCustomizer
ACustomizer
that executes scripts in aGremlinScriptEngine
instance for purpose of initialization.interface
TranslatorCustomizer
Provides a way to customize and overrideBytecode
to script translation.Classes in org.apache.tinkerpop.gremlin.jsr223 that implement Customizer Modifier and Type Class Description class
DefaultBindingsCustomizer
Default implementation of theBindingsCustomizer
which adds bindings to theScriptContext.GLOBAL_SCOPE
.class
DefaultImportCustomizer
Simple implementation of theImportCustomizer
which allows direct setting of all the different import types.class
DefaultScriptCustomizer
Default implementation of theScriptCustomizer
that can create the script list from a list of files or from lines of script.class
LazyBindingsCustomizer
A customizer implementation that provides bindings to aGremlinScriptEngine
in theScriptContext.GLOBAL_SCOPE
.Fields in org.apache.tinkerpop.gremlin.jsr223 declared as Customizer Modifier and Type Field Description protected Customizer[]
AbstractGremlinPlugin. customizers
Methods in org.apache.tinkerpop.gremlin.jsr223 that return types with arguments of type Customizer Modifier and Type Method Description List<Customizer>
DefaultGremlinScriptEngineManager. getCustomizers(String scriptEngineName)
List<Customizer>
GremlinScriptEngineManager. getCustomizers(String scriptEngineName)
Get the list ofCustomizer
instances filtered by thescriptEngineName
.Constructors in org.apache.tinkerpop.gremlin.jsr223 with parameters of type Customizer Constructor Description AbstractGremlinPlugin(String moduleName, Set<String> appliesTo, Customizer... customizers)
Creates a baseGremlinPlugin
that will apply to specificGremlinScriptEngine
instances.AbstractGremlinPlugin(String moduleName, Customizer... customizers)
Creates a baseGremlinPlugin
that will apply to allGremlinScriptEngine
instances.GremlinLangScriptEngine(Customizer... customizers)
-
Uses of Customizer in org.apache.tinkerpop.gremlin.jsr223.console
Subinterfaces of Customizer in org.apache.tinkerpop.gremlin.jsr223.console Modifier and Type Interface Description interface
ConsoleCustomizer
ACustomizer
that allows aRemoteAcceptor
to be used with a console implementation.
-