Interface ImportCustomizer
- All Superinterfaces:
Customizer
- All Known Implementing Classes:
DefaultImportCustomizer
Provides the list of imports to apply to a
GremlinScriptEngine instance.- Author:
- Stephen Mallette (http://stephen.genoprime.com)
-
Method Summary
Modifier and TypeMethodDescriptionGets the set of classes to be imported to theGremlinScriptEngine.Gets the set of packages from thegetClassImports().Gets the set of classes from thegetEnumImports().Gets the set of enums to be imported to theGremlinScriptEngine.Gets the set of fields from thegetFieldImports().Gets the set of fields to be imported to theGremlinScriptEngine.Gets the set of classes from thegetMethodImports().Gets the set of static methods to be imported to theGremlinScriptEngine.
-
Method Details
-
getClassImports
Gets the set of classes to be imported to theGremlinScriptEngine. -
getMethodImports
Gets the set of static methods to be imported to theGremlinScriptEngine. -
getEnumImports
Gets the set of enums to be imported to theGremlinScriptEngine. -
getFieldImports
Gets the set of fields to be imported to theGremlinScriptEngine. -
getClassPackages
Gets the set of packages from thegetClassImports(). -
getMethodClasses
Gets the set of classes from thegetMethodImports(). -
getEnumClasses
Gets the set of classes from thegetEnumImports(). -
getFieldClasses
Gets the set of fields from thegetFieldImports().
-