public final class PythonTranslator extends Object implements Translator.ScriptTranslator
Bytecode into a Python string representation.| Modifier and Type | Class and Description | 
|---|---|
| static class  | PythonTranslator.DefaultTypeTranslatorPerforms standard type translation for the TinkerPop types to Python. | 
| static class  | PythonTranslator.NoSugarTranslatorPerforms translation without for the syntax sugar to Python. | 
Translator.ScriptTranslator.AbstractTypeTranslator, 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 PythonTranslator | of(String traversalSource) | 
| static PythonTranslator | of(String traversalSource,
  boolean withParameters)Creates the translator with the  PythonTranslator.DefaultTypeTranslatorpassing thewithParametersoption to it
 which will handle type translation in a fashion that should typically increase cache hits and reduce
 compilation times if enabled at the sacrifice to rewriting of the script that could reduce readability. | 
| static PythonTranslator | of(String traversalSource,
  Translator.ScriptTranslator.TypeTranslator typeTranslator)Creates the translator with a custom  TypeTranslatorinstance. | 
| String | toString() | 
| Script | translate(Bytecode bytecode)Translate  Bytecodeinto a new representation. | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waittranslatepublic static PythonTranslator of(String traversalSource)
public static PythonTranslator of(String traversalSource, boolean withParameters)
PythonTranslator.DefaultTypeTranslator passing the withParameters option to it
 which will handle type translation in a fashion that should typically increase cache hits and reduce
 compilation times if enabled at the sacrifice to rewriting of the script that could reduce readability.public static PythonTranslator of(String traversalSource, Translator.ScriptTranslator.TypeTranslator typeTranslator)
TypeTranslator instance.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,Script>public Script translate(Bytecode bytecode)
TranslatorBytecode into a new representation. Typically, for language translations, the translation is
 to a string representing the traversal in the respective scripting language.translate in interface Translator<String,Script>bytecode - the bytecode representing traversal source and traversal manipulations.public String getTargetLanguage()
TranslatorgetTargetLanguage in interface Translator<String,Script>Copyright © 2013–2023 Apache Software Foundation. All rights reserved.