/// <summary>Populates options from StanfordCoreNLP pipeline.</summary>
 public static AnnotationOutputter.Options GetOptions(StanfordCoreNLP pipeline)
 {
     AnnotationOutputter.Options options = new AnnotationOutputter.Options();
     options.relationsBeam          = pipeline.GetBeamPrintingOption();
     options.constituentTreePrinter = pipeline.GetConstituentTreePrinter();
     options.encoding           = pipeline.GetEncoding();
     options.printSingletons    = pipeline.GetPrintSingletons();
     options.beamPrintingOption = pipeline.GetBeamPrintingOption();
     options.pretty             = pipeline.GetPrettyPrint();
     options.includeText        = pipeline.GetIncludeText();
     return(options);
 }