public final class GroovyTranslator extends Object implements Translator.ScriptTranslator
| Modifier and Type | Class and Description | 
|---|---|
| static class  | GroovyTranslator.DefaultTypeTranslatorPerforms standard type translation for the TinkerPop types to Groovy. | 
Translator.ScriptTranslator.TypeTranslatorTranslator.ScriptTranslator, Translator.StepTranslator<S extends TraversalSource,T extends Traversal.Admin<?,?>>| Modifier and Type | Method and Description | 
|---|---|
| String | getTargetLanguage()Get the language that the translator is converting the traversal byte code to. | 
| String | getTraversalSource()Get the  TraversalSourcerepresentation rooting this translator. | 
| static GroovyTranslator | of(String traversalSource) | 
| static GroovyTranslator | of(String traversalSource,
  Translator.ScriptTranslator.TypeTranslator typeTranslator) | 
| String | toString() | 
| String | translate(Bytecode bytecode)Translate  Bytecodeinto a new representation. | 
public static final GroovyTranslator of(String traversalSource)
public static final GroovyTranslator of(String traversalSource, Translator.ScriptTranslator.TypeTranslator typeTranslator)
public String translate(Bytecode bytecode)
TranslatorBytecode into a new representation.
 Typically, for language translations, the translation is to a string represenging the traversal in the respective scripting language.translate in interface Translator<String,String>bytecode - the byte code representing traversal source and traversal manipulations.public String getTargetLanguage()
TranslatorgetTargetLanguage in interface Translator<String,String>public String getTraversalSource()
TranslatorTraversalSource representation rooting this translator.
 For string-based translators (Translator.ScriptTranslator), this is typically a "g".
 For java-based translators (Translator.StepTranslator), this is typically the TraversalSource instance which the Traversal will be built from.getTraversalSource in interface Translator<String,String>Copyright © 2013–2019 Apache Software Foundation. All rights reserved.